Add status_id column

This commit is contained in:
James Brooks
2017-07-25 14:40:43 -04:00
parent 188eb00ca8
commit 7622a8f474
2 changed files with 4 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ class CreateIncidentComponents extends Migration
$table->increments('id');
$table->integer('incident_id')->unsigned()->index();
$table->integer('component_id')->unsigned()->index();
$table->integer('status_id')->unsigned()->index();
$table->timestamps();
});
}