decimal('time', 8, 2)->unsigned()->default(0)->change(); $table->text('comment')->nullable()->default(null); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('results', function(Blueprint $table) { $table->dropColumn('comment'); }); } };