dropColumn('is_private'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('albums', function (Blueprint $table) { $table->boolean('is_private')->default(false); }); } }