From fa27ed965793358fdbebd4602cf513e6c896c2e2 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 14 Jun 2015 17:52:35 +0300 Subject: [PATCH] Added resume option to tasks --- database/migrations/2015_06_14_093410_enable_resuming_tasks.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2015_06_14_093410_enable_resuming_tasks.php b/database/migrations/2015_06_14_093410_enable_resuming_tasks.php index a08aa1eb383b..6a685782f1bb 100644 --- a/database/migrations/2015_06_14_093410_enable_resuming_tasks.php +++ b/database/migrations/2015_06_14_093410_enable_resuming_tasks.php @@ -45,6 +45,7 @@ class EnableResumingTasks extends Migration { */ public function down() { + Schema::table('tasks', function($table) { $table->dropColumn('is_running');