dropColumn('access_token'); $table->dropColumn('is_owner'); $table->string('role')->default('admin'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('workspaces', function (Blueprint $table) { $table->string('access_token')->nullable(); $table->boolean('is_owner')->default(true); $table->dropColumn('role'); }); } };