addSql('ALTER TABLE chill_person_household_members DROP COLUMN holder'); } public function getDescription(): string { return 'Add house holder on membership'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE chill_person_household_members ADD holder BOOLEAN DEFAULT FALSE NOT NULL'); } }