38 lines
818 B
PHP
38 lines
818 B
PHP
<?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->year('year');
|
|
$table->string('make');
|
|
$table->string('model');
|
|
$table->string('type');
|
|
$table->boolean('doNotJudge');
|
|
$table->string('owner');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('vehicles');
|
|
}
|
|
}
|