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 7d1eb25 commit 24c792bCopy full SHA for 24c792b
tests/Functional/Schema/SchemaManagerTest.php
@@ -311,16 +311,16 @@ public function testIntrospectTableWithDotInIndexNames(): void
311
->setForeignKeyConstraints(
312
ForeignKeyConstraint::editor()
313
->setUnquotedReferencingColumnNames('user_id')
314
- ->setReferencedTableName('test_user')
+ ->setUnquotedReferencedTableName('test_user')
315
->setUnquotedReferencedColumnNames('id')
316
->setQuotedName('fk.example.user_id')
317
->create(),
318
)
319
- ->setIndexes([Index::editor()
+ ->setIndexes(Index::editor()
320
->setQuotedName('idx.example.id')
321
->setUnquotedColumnNames('id', 'user_id')
322
323
- ])
+ )
324
->create();
325
$this->dropAndCreateTable($tableTo);
326
0 commit comments