1
0
Fork 0

Code style: fix indentation in doctrine migration 0001

This commit is contained in:
Krzysztof Sikorski 2022-04-18 01:13:00 +02:00
parent 78105244d9
commit 579d2047d8
Signed by: krzysztof-sikorski
GPG Key ID: 4EB564BD08FE8476
1 changed files with 8 additions and 8 deletions

View File

@ -84,17 +84,17 @@ final class Version0001 extends AbstractMigration
// create foreign keys
$this->addSql(
<<<'SQL'
ALTER TABLE nexus_raw_data ADD CONSTRAINT FK_7BE0EB04919E5513
FOREIGN KEY (submitter_id) REFERENCES "user" (id)
NOT DEFERRABLE INITIALLY IMMEDIATE
SQL
ALTER TABLE nexus_raw_data ADD CONSTRAINT FK_7BE0EB04919E5513
FOREIGN KEY (submitter_id) REFERENCES "user" (id)
NOT DEFERRABLE INITIALLY IMMEDIATE
SQL
);
$this->addSql(
<<<'SQL'
ALTER TABLE user_access_token ADD CONSTRAINT FK_366EA16A7E3C61F9
FOREIGN KEY (owner_id) REFERENCES "user" (id)
NOT DEFERRABLE INITIALLY IMMEDIATE
SQL
ALTER TABLE user_access_token ADD CONSTRAINT FK_366EA16A7E3C61F9
FOREIGN KEY (owner_id) REFERENCES "user" (id)
NOT DEFERRABLE INITIALLY IMMEDIATE
SQL
);
}