관리-도구
편집 파일: 2023_12_16_193712_create_draft_sales_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDraftSalesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('draft_sales', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->integer('user_id')->index('draft_sales_user_id'); $table->date('date'); $table->string('Ref', 192); $table->integer('client_id')->index('draft_sales_client_id'); $table->integer('warehouse_id')->index('draft_sales_warehouse_id'); $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->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('draft_sales'); } }