boolean('m1_complete')->nullable(); $table->boolean('m2_complete')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tweets', function (Blueprint $table) { $table->dropColumn('m1_complete'); $table->dropColumn('m2_complete'); }); } }