wrapTable('tasks'); DB::statement('ALTER TABLE ' . $table . ' CHANGE `next_run` `next_run` TIMESTAMP NULL;'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('tasks', function (Blueprint $table) { $table = DB::getQueryGrammar()->wrapTable('tasks'); DB::statement('ALTER TABLE ' . $table . ' CHANGE `next_run` `next_run` TIMESTAMP NOT NULL;'); }); } }