This commit is contained in:
邓皓元 2019-12-20 19:26:25 +08:00
parent 1382f8196f
commit c889094a0a

View File

@ -14,7 +14,7 @@ class AddPackageTypeToVirtualPackages extends Migration
public function up() public function up()
{ {
Schema::table('virtual_packages', function (Blueprint $table) { Schema::table('virtual_packages', function (Blueprint $table) {
$table->tinyInteger('package_type')->unsigned()->default(0)->comment('套餐类型0:A类套餐 1:B类套餐 2:C类套餐 3:D类套餐')->after('type'); $table->tinyInteger('package_type')->unsigned()->default(255)->comment('套餐类型0:A类套餐 1:B类套餐 2:C类套餐 3:D类套餐')->after('type');
}); });
} }