관리-도구
편집 파일: 2021_03_08_020247_create_transfers_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTransfersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('transfers', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->integer('user_id')->index('user_id_transfers'); $table->string('Ref', 192); $table->date('date'); $table->integer('from_warehouse_id')->index('from_warehouse_id'); $table->integer('to_warehouse_id')->index('to_warehouse_id'); $table->float('items', 10, 0); $table->float('tax_rate', 10, 0)->nullable()->default(0); $table->float('TaxNet', 10, 0)->nullable()->default(0); $table->float('discount', 10, 0)->nullable()->default(0); $table->float('shipping', 10, 0)->nullable()->default(0); $table->float('GrandTotal', 10, 0)->default(0); $table->string('statut', 192); $table->text('notes')->nullable(); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('transfers'); } }