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