Commit 5631651e by lujunyi

修改签名照长度

parent 91695858
......@@ -31,7 +31,7 @@ public function up()
$table->text('be_good_at')->nullable()->comment('擅长');
$table->text('introduction')->nullable()->comment('简介');
$table->boolean('status')->default(0)->comment('是否启用[0=未启用,1=启用]');
$table->text('signed_pic')->nullable()->comment('签名照');
$table->longText('signed_pic')->nullable()->comment('签名照');
$table->bigInteger('user_id')->nullable()->unique('uk_userid')->comment('用户表ID');
$table->timestamps();
$table->softDeletes();
......
......@@ -23,7 +23,7 @@ public function up()
$table->string('practicing_license')->comment('执业注册证书');
$table->date('practicing_license_expired_time')->comment('执业注册证书有效期');
$table->string('physician_license')->comment('执业资格证书');
$table->string('signed_pic')->comment('签名照');
$table->longText('signed_pic')->nullable()->comment('签名照');
$table->boolean('status')->default(0)->comment('启用[0=未启用,1=启用]');
$table->bigInteger('pharmacy_id')->index('idx_pharmacyid')->comment('药店ID');
$table->timestamps();
......
......@@ -36,7 +36,7 @@ public function up(): void
$table->string('doctor_department', 128)->nullable()->comment('医师科室');
$table->string('doctor_title', 64)->nullable()->comment('医师职称');
$table->string('doctor_license_no', 30)->nullable()->comment('医师执照编号');
$table->text('doctor_signed_pic')->nullable()->comment('医师签名照');
$table->longText('doctor_signed_pic')->nullable()->comment('医师签名照');
$table->bigInteger('pharmacy_id')->default(0)->comment('药店表ID');
$table->string('pharmacy_name', 64)->nullable()->comment('药店名称');
......@@ -44,7 +44,7 @@ public function up(): void
$table->bigInteger('pharmacist_id')->default(0)->comment('药师表ID');
$table->string('pharmacist_name', 50)->nullable()->comment('药师姓名');
$table->string('pharmacist_license_number', 32)->nullable()->comment('药师执照编号');
$table->text('pharmacist_signed_pic')->nullable()->comment('药师签名照');
$table->longText('pharmacist_signed_pic')->nullable()->comment('药师签名照');
$table->string('prescription_pic')->nullable()->comment('处方单图片地址');
$table->boolean('is_voided')->default(0)->comment('作废状态[0=未作废,1=作废]');
......
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