#21 base code for accepting/rejecting PIREPs
This commit is contained in:
@@ -23,8 +23,8 @@ class CreateUsersTable extends Migration
|
||||
$table->integer('home_airport_id')->nullable()->unsigned();
|
||||
$table->integer('curr_airport_id')->nullable()->unsigned();
|
||||
$table->uuid('last_pirep_id')->nullable();
|
||||
$table->bigInteger('flights')->nullable()->unsigned();
|
||||
$table->bigInteger('flight_time')->nullable()->unsigned();
|
||||
$table->bigInteger('flights')->unsigned()->default(0);
|
||||
$table->bigInteger('flight_time')->unsigned()->default(0);
|
||||
$table->decimal('balance', 19, 2)->nullable();
|
||||
$table->tinyInteger('timezone')->default(0);
|
||||
$table->boolean('active')->nullable();
|
||||
|
||||
@@ -26,7 +26,8 @@ class CreatePirepsTable extends Migration
|
||||
$table->integer('level')->unsigned();
|
||||
$table->string('route')->nullable();
|
||||
$table->string('notes')->nullable();
|
||||
$table->tinyInteger('status');
|
||||
$table->tinyInteger('source')->default(0);
|
||||
$table->tinyInteger('status')->default(0);
|
||||
$table->string('raw_data')->nullable();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
Reference in New Issue
Block a user