addSql('ALTER TABLE content_source ADD chapter_selector VARCHAR(255) DEFAULT NULL'); $this->addSql('ALTER TABLE manga ALTER monitored DROP DEFAULT'); } 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 manga ALTER monitored SET DEFAULT false'); $this->addSql('ALTER TABLE content_source DROP chapter_selector'); } }