addSql('ALTER TABLE chill_person_social_work_evaluation DROP active'); } public function getDescription(): string { return 'Add an active column on evaluation'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE chill_person_social_work_evaluation ADD active BOOLEAN DEFAULT true NOT NULL'); } }