start work on car registration

This commit is contained in:
2019-02-13 16:15:55 -05:00
parent bd9b7f7956
commit e035800373
3 changed files with 168 additions and 113 deletions

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVehiclesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('vehicles', function (Blueprint $table) {
$table->increments('id');
$table->string('year');
$table->string('make');
$table->string('model');
$table->string('type');
$table->boolean('doNotJudge');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('vehicles');
}
}