increments('id'); $table->integer('ecom_order_id'); $table->string('name')->nullable(); $table->integer('product_id')->nullable(); $table->integer('variation_id')->nullable(); $table->integer('quantity')->nullable(); $table->decimal('total')->nullable(); $table->string('sku')->nullable(); $table->decimal('price')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('detail_ecommerce_orders'); } }