increments('id'); $table->integer('fireStationID'); $table->string('name', 45); $table->integer('amount'); $table->string('parameter', 45)->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('equipment'); } }