id(); $table->timestamps(); $table->string('model'); $table->date('production_date'); $table->date('operating_date'); $table->boolean('serviceability')->default(true); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('planes'); } }