dbfdg bigIncrements('id'); $table->integer('user'); $table->integer('coupon'); $table->string('order')->nullable(); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_coupons'); } }