addSql('ALTER TABLE release ADD owner_id INT NOT NULL'); $this->addSql('ALTER TABLE release ADD CONSTRAINT FK_9E47031D7E3C61F9 FOREIGN KEY (owner_id) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE'); $this->addSql('CREATE INDEX IDX_9E47031D7E3C61F9 ON release (owner_id)'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('CREATE SCHEMA public'); $this->addSql('ALTER TABLE release DROP CONSTRAINT FK_9E47031D7E3C61F9'); $this->addSql('DROP INDEX IDX_9E47031D7E3C61F9'); $this->addSql('ALTER TABLE release DROP owner_id'); } }