67 lines
2.0 KiB
PHP
67 lines
2.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateContractsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
if(!Schema::hasTable('contracts')) {
|
|
Schema::create('contracts', function(Blueprint $table) {
|
|
$table->increments('contract_id')->unique();
|
|
$table->string('title');
|
|
$table->string('type');
|
|
$table->date('end_date');
|
|
$table->text('body');
|
|
$table->boolean('finished')->default(false);
|
|
$table->decimal('final_cost', 20, 2)->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
if(!Schema::hasTable('contract_bids')) {
|
|
Schema::create('contract_bids', function(Blueprint $table) {
|
|
$table->increments('id')->unique();
|
|
$table->integer('contract_id');
|
|
$table->decimal('bid_amount', 20, 2);
|
|
$table->string('character_name');
|
|
$table->string('character_id');
|
|
$table->string('corporation_name');
|
|
$table->string('corporation_id');
|
|
$table->text('notes');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
if(!Schema::hasTable('accepted_bids')) {
|
|
Schema::create('accepted_bids', function(Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('contract_id');
|
|
$table->integer('bid_id');
|
|
$table->decimal('bid_amount', 20, 2);
|
|
$table->text('notes')->default(null);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('contracts');
|
|
Schema::dropIfExists('contract_bids');
|
|
Schema::dropIfExists('accepted_bids');
|
|
}
|
|
}
|