addSql('ALTER TABLE chill_person_social_work_evaluation ALTER delay SET NOT NULL'); $this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER notificationDelay SET NOT NULL'); } public function getDescription(): string { return 'add nullable fields to social work evaluation'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER delay DROP NOT NULL'); $this->addSql('ALTER TABLE chill_person_social_work_evaluation ALTER notificationdelay DROP NOT NULL'); } }