|
|
@ -19,6 +19,7 @@ class CreateIssuesTable extends Migration |
|
|
$table->string('title', 60); |
|
|
$table->string('title', 60); |
|
|
$table->string('body'); |
|
|
$table->string('body'); |
|
|
$table->unsignedInteger('creator_id'); |
|
|
$table->unsignedInteger('creator_id'); |
|
|
|
|
|
$table->unsignedTinyInteger('priority_id'); |
|
|
$table->unsignedInteger('pic_id')->nullable(); |
|
|
$table->unsignedInteger('pic_id')->nullable(); |
|
|
$table->unsignedTinyInteger('status_id')->default(0); |
|
|
$table->unsignedTinyInteger('status_id')->default(0); |
|
|
$table->timestamps(); |
|
|
$table->timestamps(); |
|
|
|