1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Increase task description field

This commit is contained in:
Hillel Coren 2016-11-30 20:46:07 +02:00
parent 7f72836aad
commit bd624845c5

View File

@ -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;');