diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php index af1222e2..a6224a4f 100644 --- a/tests/ExampleTest.php +++ b/tests/ExampleTest.php @@ -1,3 +1,17 @@ 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:禁用'); +});