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'); } }