You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE package ADD CONSTRAINT FK_DE6867952B6BB138 FOREIGN KEY (installations_id) REFERENCES package_installations (id) ON DELETE CASCADE NOT DEFERRABLE
45
45
SQL);
46
46
$this->addSql(<<<'SQL'
47
47
CREATE UNIQUE INDEX UNIQ_DE6867952B6BB138 ON package (installations_id)
@@ -76,7 +76,7 @@ public function up(Schema $schema): void
76
76
ALTER TABLE version ALTER installations_id SET NOT NULL
77
77
SQL);
78
78
$this->addSql(<<<'SQL'
79
-
ALTER TABLE version ADD CONSTRAINT FK_BF1CD3C32B6BB138 FOREIGN KEY (installations_id) REFERENCES version_installations (id)
79
+
ALTER TABLE version ADD CONSTRAINT FK_BF1CD3C32B6BB138 FOREIGN KEY (installations_id) REFERENCES version_installations (id) ON DELETE CASCADE NOT DEFERRABLE
80
80
SQL);
81
81
$this->addSql(<<<'SQL'
82
82
CREATE UNIQUE INDEX UNIQ_BF1CD3C32B6BB138 ON version (installations_id)
0 commit comments