<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDiscountBundlesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('discount_bundles', function (Blueprint $table) { $table->increments('id'); $table->integer('discount_id')->unsigned(); $table->integer('bundle_id')->unsigned(); $table->integer('created_at')->unsigned(); $table->foreign('discount_id')->references('id')->on('discounts')->onDelete('cascade'); $table->foreign('bundle_id')->references('id')->on('bundles')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('discount_bundles'); } }