/
home
/
sjslayjy
/
public_html
/
mosaram
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateStockInDetailsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('stock_in_details', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('stock_in_id'); $table->integer('token_id'); $table->integer('product_loading_id'); $table->integer('product_id'); $table->integer('unit_id'); $table->integer('quantity'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('stock_in_details'); } }