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
723e7713
authored
Nov 11, 2024
by
lujunyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
格式化
parent
91a46573
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
database/migrations/2024_11_06_182148_create_drug_tag_table.php
+2
-2
database/migrations/2024_11_07_182705_create_doctor_correction_table.php
+2
-2
database/migrations/2024_11_07_184014_create_pharmacy_correction_table.php
+2
-2
database/migrations/2024_11_10_160715_create_dosage_table.php
+1
-0
No files found.
database/migrations/2024_11_06_182148_create_tag_table.php
→
database/migrations/2024_11_06_182148_create_
drug_
tag_table.php
View file @
723e7713
...
...
@@ -4,7 +4,7 @@
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreateTagTable
extends
Migration
return
new
class
extends
Migration
{
/**
* Run the migrations.
...
...
@@ -31,4 +31,4 @@ public function down()
{
Schema
::
dropIfExists
(
'drug_tag'
);
}
}
}
;
database/migrations/2024_11_07_182705_create_doctor_correction_table.php
View file @
723e7713
...
...
@@ -4,7 +4,7 @@
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreateDoctorCorrectionTable
extends
Migration
return
new
class
extends
Migration
{
/**
* Run the migrations.
...
...
@@ -34,4 +34,4 @@ public function down()
{
Schema
::
dropIfExists
(
'doctor_correction'
);
}
}
}
;
database/migrations/2024_11_07_184014_create_pharmacy_correction_table.php
View file @
723e7713
...
...
@@ -4,7 +4,7 @@
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreatePharmacyCorrectionTable
extends
Migration
return
new
class
extends
Migration
{
/**
* Run the migrations.
...
...
@@ -34,4 +34,4 @@ public function down()
{
Schema
::
dropIfExists
(
'pharmacy_correction'
);
}
}
}
;
database/migrations/2024_11_10_160715_create_dosage_table.php
View file @
723e7713
...
...
@@ -14,6 +14,7 @@ public function up(): void
Schema
::
create
(
'dosage'
,
function
(
Blueprint
$table
)
{
$table
->
comment
(
'用法用量'
);
$table
->
bigIncrements
(
'id'
);
$table
->
bigInteger
(
'pharmacy_id'
)
->
comment
(
'药店表ID'
);
$table
->
string
(
'dosage_desc'
,
128
)
->
comment
(
'用法用量'
);
$table
->
string
(
'dosage_show'
)
->
comment
(
'显示内容'
);
$table
->
timestamps
();
...
...
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