updates to add show judging
This commit is contained in:
app
Console
Helpers
Http
Controllers
Models
database
factories
migrations
resources/views
awardcategories.blade.phpcarshowscores.blade.phpcarshowwinners.blade.phpjudges.blade.phpjudgingentry.blade.php
layouts
pcentry.blade.phpshowcarlist.blade.phpshowcars.blade.phpvehicletypes.blade.phproutes
storage/debugbar
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateJudgesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('judges', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('judge_number');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('judges');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user