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
2dbe8e90
authored
Nov 12, 2024
by
赵增煜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除多余字段
parent
d9bf6e65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
database/migrations/2024_11_04_000511_create_drug_table.php
+0
-2
No files found.
database/migrations/2024_11_04_000511_create_drug_table.php
View file @
2dbe8e90
...
@@ -26,8 +26,6 @@ public function up()
...
@@ -26,8 +26,6 @@ public function up()
$table
->
string
(
'approval_no'
)
->
comment
(
'批准文号'
);
$table
->
string
(
'approval_no'
)
->
comment
(
'批准文号'
);
$table
->
integer
(
'limit_buy_7'
)
->
default
(
0
)
->
comment
(
'7天内限购数量'
);
$table
->
integer
(
'limit_buy_7'
)
->
default
(
0
)
->
comment
(
'7天内限购数量'
);
$table
->
boolean
(
'is_rx'
)
->
default
(
false
)
->
comment
(
'是否处方药'
);
$table
->
boolean
(
'is_rx'
)
->
default
(
false
)
->
comment
(
'是否处方药'
);
$table
->
text
(
'tag'
)
->
nullable
()
->
comment
(
'标签'
);
$table
->
string
(
'standard_code'
,
32
)
->
comment
(
'本位码'
);
$table
->
timestamps
();
$table
->
timestamps
();
$table
->
softDeletes
();
$table
->
softDeletes
();
});
});
...
...
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