Commit 759b5b57 by 赵增煜

新增默认药师字段

parent 7d0d403a
...@@ -25,6 +25,7 @@ public function up() ...@@ -25,6 +25,7 @@ public function up()
$table->string('physician_license')->comment('执业资格证书'); $table->string('physician_license')->comment('执业资格证书');
$table->longText('signed_pic')->nullable()->comment('签名照'); $table->longText('signed_pic')->nullable()->comment('签名照');
$table->boolean('status')->default(0)->comment('启用[0=未启用,1=启用]'); $table->boolean('status')->default(0)->comment('启用[0=未启用,1=启用]');
$table->boolean('is_default')->default(0)->comment('默认药师[0=否,1=是]');
$table->bigInteger('pharmacy_id')->index('idx_pharmacyid')->comment('药店ID'); $table->bigInteger('pharmacy_id')->index('idx_pharmacyid')->comment('药店ID');
$table->timestamps(); $table->timestamps();
$table->softDeletes(); $table->softDeletes();
......
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