Car registration work

This commit is contained in:
2019-02-13 16:36:47 -05:00
parent e035800373
commit 7cdea664e1
5 changed files with 75 additions and 11 deletions

View File

@ -15,11 +15,12 @@ class CreateVehiclesTable extends Migration
{
Schema::create('vehicles', function (Blueprint $table) {
$table->increments('id');
$table->string('year');
$table->year('year');
$table->string('make');
$table->string('model');
$table->string('type');
$table->boolean('doNotJudge');
$table->integer('owner');
$table->timestamps();
});
}