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

@@ -14,7 +14,7 @@ class CreateSubfleetsTable extends Migration
public function up()
{
Schema::create('subfleets', function (Blueprint $table) {
$table->increments('id');
$table->bigIncrements('id');
$table->integer('airline_id')->unsigned()->nullable();
$table->string('name', 50);
$table->string('type', 7);