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 6c1bc9f commit 594fed4Copy full SHA for 594fed4
tests/TDBMAbstractServiceTest.php
@@ -434,6 +434,11 @@ private static function initSchema(Connection $connection): void
434
->column('track_id')->references('tracks')
435
->column('artist_id')->references('artists')->comment('@JsonKey("feat") @JsonInclude');
436
437
+ $db->table('artists_relations')
438
+ ->column('id')->integer()->primaryKey()->autoIncrement()
439
+ ->column('parent_id')->references('artists')
440
+ ->column('child_id')->references('artists');
441
+
442
$sqlStmts = $toSchema->getMigrateFromSql($fromSchema, $connection->getDatabasePlatform());
443
444
foreach ($sqlStmts as $sqlStmt) {
0 commit comments