10 lines
251 B
PHP
10 lines
251 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
Schema::table('virtual_products', function ($table) {
|
|
$table->integer('renew_price')->unsigned()->default(0)->comment('续费价格');
|
|
});
|