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