increments('id'); $table->dateTime('operationDate'); $table->string('location', 100); $table->string('target', 100); $table->string('dangerType', 100); $table->string('description'); $table->integer('commanderID'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('operations'); } }