Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Nov 20, 2024
1 parent 41facb5 commit 2b4f9fb
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 @@ -411,6 +411,7 @@ public static function buildColumnDefinition(): array
$values["defaultValue('')"][0] = "nvarchar(255) DEFAULT ''";
$values['defaultValue(null)'][0] = 'nvarchar(255) DEFAULT NULL';
$values['defaultValue($expression)'][0] = 'int DEFAULT (1 + 2)';
$values['defaultValue($emptyExpression)'][0] = 'int';
$values["integer()->defaultValue('')"][0] = 'int DEFAULT NULL';
$values['notNull()'][0] = 'nvarchar(255) NOT NULL';
$values['null()'][0] = 'nvarchar(255) NULL';
Expand Down

0 comments on commit 2b4f9fb

Please sign in to comment.