Add bids table and bid configuration

This commit is contained in:
Nabeel Shahzad
2017-12-12 11:52:24 -06:00
parent de582f617c
commit 1da0901ae3
2 changed files with 54 additions and 0 deletions

View File

@@ -58,8 +58,26 @@ class CreateSettingsTable extends Migration
'type' => 'boolean',
'description' => 'Only allow flights from current location',
],
[
'order' => 11,
'name' => 'Disable flights on bid',
'group' => 'flights',
'key' => 'flights.disable_on_bid',
'value' => 'true',
'type' => 'boolean',
'description' => 'When a flight is bid on, should the flight be shown',
],
[
'order' => 20,
'name' => 'Allow multiple bids',
'group' => 'pilots',
'key' => 'pilots.allow_single_bid',
'value' => 'true',
'type' => 'boolean',
'description' => 'Whether or not someone can bid on multiple flights',
],
[
'order' => 21,
'name' => 'Hide Inactive Pilots',
'group' => 'pilots',
'key' => 'pilots.hide_inactive',

View File

@@ -0,0 +1,36 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateBidsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user_bids', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id', false, true);
$table->uuid('flight_id');
$table->timestamps();
$table->index('user_id');
$table->index(['user_id', 'flight_id']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('user_bids');
}
}