dateTime('last_billed')->default(DB::raw('CURRENT_TIMESTAMP'))->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('servers', function (Blueprint $table) { $table->dropColumn('last_billed'); }); } }