Changed some PKs to bigInts

This commit is contained in:
Nabeel Shahzad
2017-08-02 10:20:51 -05:00
parent 1953c4dcb5
commit e4dc989ab2
5 changed files with 10 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ class CreateFlightsTable extends Migration
});
Schema::create('flight_fields', function (Blueprint $table) {
$table->increments('id');
$table->bigIncrements('id');
$table->uuid('flight_id');
$table->string('name', 50);
$table->text('value');