minor fixes

This commit is contained in:
omair saleh
2020-06-09 08:59:31 +08:00
parent 3b1aedb7cd
commit 4d315c2a48
2 changed files with 2 additions and 2 deletions
@@ -19,7 +19,7 @@ class CreateMilestoneTasksTable extends Migration
$table->unsignedBigInteger('milestone_id');
$table->unsignedBigInteger('type_id');
$table->string('title');
$table->string('description')->nullable();
$table->text('description')->nullable();
$table->integer('order');
$table->timestamps();
$table->softDeletes();
@@ -19,7 +19,7 @@ class CreateTasksTable extends Migration
$table->unsignedBigInteger('milestone_id')->nullable();
$table->unsignedBigInteger('type_id');
$table->string('title');
$table->string('description')->nullable();
$table->text('description')->nullable();
$table->unsignedBigInteger('status');
$table->boolean('active');
$table->timestamps();