dbfdg id(); $table->integer('warehouse_id')->default(0); $table->integer('product_id')->default(0); $table->integer('quantity')->default('0'); $table->integer('created_by')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('warehouse_products'); } }