text('code')->nullable()->default(null)->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('rounds', function(Blueprint $table) { $table->text('code')->change(); }); } };