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