addSql('ALTER TABLE page DROP FOREIGN KEY FK_140AB620727ACA70'); $this->addSql('DROP INDEX IDX_140AB620727ACA70 ON page'); $this->addSql('ALTER TABLE page ADD merchant_id INT NOT NULL, ADD content LONGTEXT DEFAULT NULL, ADD section_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE page ADD CONSTRAINT FK_140AB6206796D554 FOREIGN KEY (merchant_id) REFERENCES merchant (id)'); $this->addSql('ALTER TABLE page ADD CONSTRAINT FK_140AB620D823E37A FOREIGN KEY (section_id) REFERENCES section (id)'); $this->addSql('CREATE INDEX IDX_140AB6206796D554 ON page (merchant_id)'); $this->addSql('CREATE INDEX IDX_140AB620D823E37A ON page (section_id)'); $this->addSql('ALTER TABLE user_merchant ADD current_admin_section_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE user_merchant ADD CONSTRAINT FK_9426C1E1FE54D809 FOREIGN KEY (current_admin_section_id) REFERENCES section (id)'); $this->addSql('CREATE INDEX IDX_9426C1E1FE54D809 ON user_merchant (current_admin_section_id)'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE page DROP FOREIGN KEY FK_140AB6206796D554'); $this->addSql('ALTER TABLE page DROP FOREIGN KEY FK_140AB620D823E37A'); $this->addSql('DROP INDEX IDX_140AB6206796D554 ON page'); $this->addSql('DROP INDEX IDX_140AB620D823E37A ON page'); $this->addSql('ALTER TABLE page DROP merchant_id, DROP content, CHANGE section_id parent_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE page ADD CONSTRAINT FK_140AB620727ACA70 FOREIGN KEY (parent_id) REFERENCES page (id)'); $this->addSql('CREATE INDEX IDX_140AB620727ACA70 ON page (parent_id)'); $this->addSql('ALTER TABLE user_merchant DROP FOREIGN KEY FK_9426C1E1FE54D809'); $this->addSql('DROP INDEX IDX_9426C1E1FE54D809 ON user_merchant'); $this->addSql('ALTER TABLE user_merchant DROP current_admin_section_id'); } }