diff --git a/database/migrations/2016_11_28_092904_add_task_projects.php b/database/migrations/2016_11_28_092904_add_task_projects.php index f709d8d084..62b231e545 100644 --- a/database/migrations/2016_11_28_092904_add_task_projects.php +++ b/database/migrations/2016_11_28_092904_add_task_projects.php @@ -35,6 +35,7 @@ class AddTaskProjects extends Migration Schema::table('tasks', function ($table) { $table->unsignedInteger('project_id')->nullable()->index(); + $table->text('description')->change(); }); DB::statement('SET FOREIGN_KEY_CHECKS=0;');