We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b91945 commit 8173516Copy full SHA for 8173516
tests/TDBMAbstractServiceTest.php
@@ -285,7 +285,9 @@ private static function initSchema(Connection $connection): void
285
->column('login')->string(255)
286
->column('password')->string(255)->null()
287
->column('status')->string(10)->null()->default(null)
288
- ->column('country_id')->references('country');
+ ->column('country_id')->references('country')
289
+ // Used to test generation for a column that starts with a digit
290
+ ->then()->column('3d_view')->boolean()->default(true);
291
292
$db->table('rights')
293
->column('label')->string(255)->primaryKey()->comment('Non autoincrementable primary key');
0 commit comments