getEnvironment() == "thetool") { //calendar_admin $table = $this->table('Calendar'); if (!$table->hasColumn('calendar_admin')) { $table ->addColumn('calendar_admin', 'boolean', [ 'default' => 0, 'after' => 'active', 'comment' => 'User has calendar admin rights', ]) ->update(); } } if($this->getEnvironment() == "addressdb") { } } public function down(): void { if($this->getEnvironment() == "thetool") { $table = $this->table('Calendar'); if ($table->hasColumn('calendar_admin')) { $table->removeColumn('calendar_admin'); } $table->update(); } if($this->getEnvironment() == "addressdb") { } } }