Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵增煜
/
tzt-admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5631651e
authored
Nov 14, 2024
by
lujunyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改签名照长度
parent
91695858
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
database/migrations/2024_11_04_220223_create_doctor_table.php
+1
-1
database/migrations/2024_11_04_224709_create_pharmacist_table.php
+1
-1
database/migrations/2024_11_10_233001_create_prescription_table.php
+2
-2
No files found.
database/migrations/2024_11_04_220223_create_doctor_table.php
View file @
5631651e
...
...
@@ -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
->
t
ext
(
'signed_pic'
)
->
nullable
()
->
comment
(
'签名照'
);
$table
->
longT
ext
(
'signed_pic'
)
->
nullable
()
->
comment
(
'签名照'
);
$table
->
bigInteger
(
'user_id'
)
->
nullable
()
->
unique
(
'uk_userid'
)
->
comment
(
'用户表ID'
);
$table
->
timestamps
();
$table
->
softDeletes
();
...
...
database/migrations/2024_11_04_224709_create_pharmacist_table.php
View file @
5631651e
...
...
@@ -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
();
...
...
database/migrations/2024_11_10_233001_create_prescription_table.php
View file @
5631651e
...
...
@@ -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
->
t
ext
(
'doctor_signed_pic'
)
->
nullable
()
->
comment
(
'医师签名照'
);
$table
->
longT
ext
(
'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
->
t
ext
(
'pharmacist_signed_pic'
)
->
nullable
()
->
comment
(
'药师签名照'
);
$table
->
longT
ext
(
'pharmacist_signed_pic'
)
->
nullable
()
->
comment
(
'药师签名照'
);
$table
->
string
(
'prescription_pic'
)
->
nullable
()
->
comment
(
'处方单图片地址'
);
$table
->
boolean
(
'is_voided'
)
->
default
(
0
)
->
comment
(
'作废状态[0=未作废,1=作废]'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment