11 lines
362 B
PHP
11 lines
362 B
PHP
<?php
|
||
|
||
use Illuminate\Support\Facades\Schema;
|
||
use Illuminate\Database\Schema\Blueprint;
|
||
|
||
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
||
|
||
Schema::table("virtual_orders", function (Blueprint $table) {
|
||
$table->tinyInteger('sign')->default(0)->comment('特殊标记 0:非特殊 -1:不在VD上的改企业转销售 -2:改企业的转销售');;
|
||
});
|