text('description')->after('name')->nullable(); $table->enum('status', ['ACTIVE','SUSPENDED'])->after('description'); $table->boolean('openJoin')->default(false)->after('status'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table(config('teamwork.teams_table'), function(Blueprint $table){ $table->dropColumn('description'); $table->dropColumn('status'); $table->dropColumn('openJoin'); }); } }