schema->hasTable('organisations')) { $this->schema->table('organisations', function (Blueprint $table) { $table->boolean('flag_approved')->default(1)->comment('Set to 1 if the organisation has been approved, 0 otherwise.'); }); } } /** * {@inheritdoc} */ public function down() { $this->schema->table('organisations', function (Blueprint $table) { $table->dropColumn('flag_approved'); }); } }