increments('id'); $table->string('icao'); $table->string('name'); $table->string('full_name')->nullable(); $table->string('registration')->nullable(); $table->boolean('active'); $table->timestamps(); $table->softDeletes(); }); } public function down() { Schema::drop('aircraft'); } }