vd/tests/ExampleTest.php
2019-03-19 15:54:40 +08:00

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('续费价格');
});