Commit 7863403b by 赵增煜

表字段调整非必填项

parent f2ae4605
......@@ -17,13 +17,13 @@ public function up(): void
$table->bigIncrements('id');
$table->string('name', 64)->comment('药店名称');
$table->string('business_license')->comment('营业执照');
$table->string('drug_biz_license')->comment('药品经营许可证');
$table->string('food_biz_license')->comment('食品经营许可证');
$table->string('med_device_biz_license')->comment('医疗器械经营许可证');
$table->string('drug_info_service_cert')->comment('互联网药品信息服务资格证书');
$table->string('pre_packaged_food')->comment('仅销售预包装食品备案表');
$table->string('area', 64)->comment('地区');
$table->string('address', 128)->comment('详细地址');
$table->string('drug_biz_license')->nullable()->comment('药品经营许可证');
$table->string('food_biz_license')->nullable()->comment('食品经营许可证');
$table->string('med_device_biz_license')->nullable()->comment('医疗器械经营许可证');
$table->string('drug_info_service_cert')->nullable()->comment('互联网药品信息服务资格证书');
$table->string('pre_packaged_food')->nullable()->comment('仅销售预包装食品备案表');
$table->string('area', 64)->nullable()->comment('地区');
$table->string('address', 128)->nullable()->comment('详细地址');
$table->string('mobile', 11)->unique('uk_mobile')->comment('药店管理员手机号');
$table->time('business_start')->comment('营业开始时间');
$table->time('business_end')->comment('营业结束时间');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment