Commit 853c6828 by 赵增煜

fix

parent fa49d615
......@@ -16,7 +16,7 @@ public function up(): void
$table->bigIncrements('id');
$table->string('name', 64)->comment('药店名称');
$table->string('business_license')->comment('营业执照');
$table->string('business_license')->nullable()->comment('营业执照');
$table->string('drug_biz_license')->nullable()->comment('药品经营许可证');
$table->string('food_biz_license')->nullable()->comment('食品经营许可证');
$table->string('med_device_biz_license')->nullable()->comment('医疗器械经营许可证');
......
......@@ -19,9 +19,9 @@ public function up(): void
$table->string('id_card', 18)->comment('身份证号');
$table->string('license_number', 32)->comment('执照编号');
$table->string('mobile', 11)->comment('手机号码');
$table->string('practicing_license')->comment('执业注册证书');
$table->date('practicing_license_expired_time')->comment('执业注册证书有效期');
$table->string('physician_license')->comment('执业资格证书');
$table->string('practicing_license')->nullable()->comment('执业注册证书');
$table->date('practicing_license_expired_time')->nullable()->comment('执业注册证书有效期');
$table->string('physician_license')->nullable()->comment('执业资格证书');
$table->longText('signed_pic')->nullable()->comment('签名照');
$table->boolean('status')->default(0)->comment('启用[0=未启用,1=启用]');
$table->bigInteger('pharmacy_id')->index('idx_pharmacyid')->comment('药店ID');
......
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