increments('id'); $table->string('code'); $table->string('name'); $table->decimal('price', 19, 2)->default(0.0); $table->decimal('cost', 19, 2)->default(0.0); $table->integer('capacity')->default(0)->unsigned(); $table->string('notes')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); Schema::create('aircraft_fare', function (Blueprint $table) { $table->increments('id'); $table->integer('aircraft_id')->unsigned(); $table->integer('fare_id')->unsigned(); $table->decimal('price', 19, 2)->nullable(); $table->decimal('cost', 19, 2)->nullable(); $table->integer('capacity')->nullable()->unsigned(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('fares'); Schema::drop('aircraft_fare'); } }