Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
b1b1b70d
Commit
b1b1b70d
authored
Sep 04, 2024
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增字段sql脚本
parent
adb1330c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
20240824.sql
sql/v2.1/20240824.sql
+0
-0
20240904.sql
sql/v2.1/20240904.sql
+14
-0
No files found.
sql/
update_V2.1
.sql
→
sql/
v2.1/20240824
.sql
View file @
b1b1b70d
File moved
sql/v2.1/20240904.sql
0 → 100644
View file @
b1b1b70d
-- 客户编号冗余到收发货人表
alter
table
`ecw_order_consignor`
add
column
`customer_number`
VARCHAR
(
50
)
DEFAULT
NULL
COMMENT
'客户编号'
;
alter
table
`ecw_order_consignee`
add
column
`customer_number`
VARCHAR
(
50
)
DEFAULT
NULL
COMMENT
'客户编号'
;
-- 提货相关数据冗余到订单表
alter
table
`ecw_order`
add
column
`pick_state`
tinyint
DEFAULT
0
COMMENT
'提货状态:0 未提货 1 部分提货 2 已提货'
;
alter
table
`ecw_order`
add
column
`pick_ratio`
VARCHAR
(
50
)
DEFAULT
'0'
COMMENT
'提货率'
;
alter
table
`ecw_order`
add
column
`pick_num`
int
DEFAULT
0
COMMENT
'提货箱数'
;
\ No newline at end of file
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