updates to add show judging

This commit is contained in:
2019-07-11 20:55:45 -04:00
parent 7cdea664e1
commit c2aced484d
34 changed files with 2341 additions and 318 deletions

View File

@ -20,7 +20,7 @@ class CreateVehiclesTable extends Migration
$table->string('model');
$table->string('type');
$table->boolean('doNotJudge');
$table->integer('owner');
$table->string('owner');
$table->timestamps();
});
}

View File

@ -0,0 +1,34 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVehicleScoresTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('vehicle_scores', function (Blueprint $table) {
$table->increments('id');
$table->string('judge');
$table->string('overall_score');
$table->string('vehicle');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('vehicle_scores');
}
}

View File

@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTypesTable extends Migration
class CreateJudgesTable extends Migration
{
/**
* Run the migrations.
@ -13,9 +13,9 @@ class CreateTypesTable extends Migration
*/
public function up()
{
Schema::create('types', function (Blueprint $table) {
Schema::create('judges', function (Blueprint $table) {
$table->increments('id');
$table->string('type_name');
$table->string('judge_number');
$table->timestamps();
});
}
@ -27,6 +27,6 @@ class CreateTypesTable extends Migration
*/
public function down()
{
Schema::dropIfExists('types');
Schema::dropIfExists('judges');
}
}

View File

@ -0,0 +1,33 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePeoplesChoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('peoples_choice', function (Blueprint $table) {
$table->increments('id');
$table->string('vehicle');
$table->string('pc_count');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('peoples_choice');
}
}

View File

@ -0,0 +1,34 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCarShowWinnersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('car_show_winners', function (Blueprint $table) {
$table->increments('id');
$table->string('category');
$table->string('vehicle');
$table->string('place');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('car_show_winners');
}
}

View File

@ -0,0 +1,33 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCarShowCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('car_show_categories', function (Blueprint $table) {
$table->increments('id');
$table->string('category_name');
$table->boolean('vehicle_type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('car_show_categories');
}
}