increments('id'); $table->string('VIN', 17)->nullable(); $table->string('gross_weight', 22)->nullable(); $table->string('agricultural', 10)->nullable(); $table->string('vehicle_type', 20)->nullable(); $table->integer('vehicle_category')->nullable(); $table->integer('user_id')->nullable(); $table->string('slug', 60)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('eform_vehicle_vehicles'); } }