Car registration work
This commit is contained in:
@ -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();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user