Fix up the PIREP field CRUD code

This commit is contained in:
Nabeel Shahzad
2017-12-31 20:59:26 -06:00
parent 11c724649c
commit 6406f47aaa
18 changed files with 101 additions and 123 deletions

View File

@@ -84,7 +84,6 @@ class CreatePirepTables extends Migration
$table->bigIncrements('id');
$table->string('name', 50);
$table->boolean('required')->default(false);
$table->timestamps();
});
Schema::create('pirep_field_values', function (Blueprint $table) {