updated user seed okay to include real employees names

This commit is contained in:
omair saleh
2020-05-12 20:21:56 +08:00
parent 70d14c9eb2
commit 0f13bd8f47
@@ -16,7 +16,7 @@ class CreateTasksTable extends Migration
{
Schema::create('tasks', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('milestone_id');
$table->unsignedBigInteger('milestone_id')->nullable();
$table->unsignedBigInteger('type_id');
$table->string('title');
$table->string('description')->nullable();