Skip to content

Commit

Permalink
Update according changes in main PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Oct 9, 2024
1 parent 7e37fff commit 6dd4851
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/Provider/QueryBuilderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ public static function buildColumnDefinition(): array
$values["defaultValue('')"][0] = "nvarchar(255) DEFAULT ''";
$values['defaultValue(null)'][0] = 'nvarchar(255)';
$values['defaultValue($expression)'][0] = 'nvarchar(255) DEFAULT expression';
$values["integer()->defaultValue('')"][0] = 'int';
$values['notNull()'][0] = 'nvarchar(255) NOT NULL';
$values['integer()->primaryKey()'][0] = 'int PRIMARY KEY';
$values['size(10)'][0] = 'nvarchar(10)';
Expand Down

0 comments on commit 6dd4851

Please sign in to comment.