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