Skip to content

Commit

Permalink
Test ColumnBuilder::string()->primaryKey() (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov authored Jan 8, 2025
1 parent e375640 commit 349655b
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 @@ -329,6 +329,7 @@ public static function buildColumnDefinition(): array
$values['notNull()'][0] = 'varchar2(255) NOT NULL';
$values['null()'][0] = 'varchar2(255) NULL';
$values['integer()->primaryKey()'][0] = 'number(10) PRIMARY KEY';
$values['string()->primaryKey()'][0] = 'varchar2(255) PRIMARY KEY';
$values["integer()->defaultValue('')"][0] = 'number(10) DEFAULT NULL';
$values['size(10)'][0] = 'varchar2(10)';
$values['unique()'][0] = 'varchar2(255) UNIQUE';
Expand Down

0 comments on commit 349655b

Please sign in to comment.