Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into add-column-builder
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/Constant/PseudoType.php
#	src/Schema/Column/AbstractColumnFactory.php
#	src/Schema/Column/ColumnFactoryInterface.php
#	tests/Provider/ColumnFactoryProvider.php
  • Loading branch information
Tigrov committed Sep 13, 2024
2 parents 285026e + e3e277d commit 66a3ab1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
- Enh #872: Use `#[\SensitiveParameter]` attribute to mark sensitive parameters (@heap-s)
- Enh #864: Realize column factory (@Tigrov)
- Enh #875: Ignore "Packets out of order..." warnings in `AbstractPdoCommand::internalExecute()` method (@Tigrov)
- Enh #877: Separate column type constants (@Tigrov)

## 1.3.0 March 21, 2024

Expand Down
5 changes: 3 additions & 2 deletions src/Constant/PseudoType.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

/**
* Defines the available column pseudo-types.
* Used to define column primary key types when creating or updating a table schema.
*/
final class PseudoType
{
Expand All @@ -18,11 +19,11 @@ final class PseudoType
*/
public const UPK = 'upk';
/**
* Define the column pseudo-type as big primary key.
* Define the column pseudo-type as a big primary key.
*/
public const BIGPK = 'bigpk';
/**
* Define the column pseudo-type as `unsigned` big primary key.
* Define the column pseudo-type as an `unsigned` big primary key.
*/
public const UBIGPK = 'ubigpk';
/**
Expand Down

0 comments on commit 66a3ab1

Please sign in to comment.