18 lines
573 B
PHP
18 lines
573 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
Schema::table('virtual_companies', function ($table) {
|
|
$table->tinyInteger('status')->unsigned()->default(0)->comment('状态 0:正常 1:禁用');
|
|
});
|
|
|
|
Schema::table('virtual_packages', function ($table) {
|
|
$table->tinyInteger('status')->unsigned()->default(0)->comment('状态 0:正常 1:禁用');
|
|
});
|
|
|
|
Schema::table('virtual_products', function ($table) {
|
|
$table->tinyInteger('status')->unsigned()->default(0)->comment('状态 0:正常 1:禁用');
|
|
});
|