increments('id'); $table->integer('order_id')->nullable(); $table->integer('productable_id')->nullable(); $table->string('productable_type', 100)->nullable(); $table->integer('quantity')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }