increments('id'); $table->integer('product_id')->nullable(); $table->integer('attribute_id')->nullable(); $table->integer('quantity')->nullable(); $table->float('price')->nullable(); $table->integer('discount')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('product_attributes'); } }