Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
岳巧源
/
jd_data_process
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e55be983
authored
Oct 25, 2024
by
岳巧源
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
add tmp sql
parent
6e306875
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
tmp.sql
tmp.txt
tmp.sql
View file @
e55be983
...
...
@@ -12,4 +12,13 @@ alter table lie_shop_push_sku_log add column stock_num int unsigned default 0 no
alter
table
lie_shop_push_sku_log
change
status
push_status
tinyint
(
1
)
unsigned
default
0
not
null
comment
'发品状态 -1:失败 1:成功'
;
alter
table
lie_shop_push_sku_log
add
column
init_status
tinyint
(
1
)
unsigned
default
0
not
null
comment
'库存、时效初始化状态 -1:失败 1:成功'
after
update_time
;
\ No newline at end of file
alter
table
lie_shop_push_sku_log
add
column
init_status
tinyint
(
1
)
unsigned
default
0
not
null
comment
'库存、时效初始化状态 -1:失败 1:成功'
after
update_time
;
update
lie_shop_push_sku_log
set
push_status
=
-
1
where
apply_id
=
""
;
alter
table
lie_shop_push_sku_log
modify
column
push_status
tinyint
(
1
)
default
0
not
null
comment
'发品状态 -1:失败 1:成功'
;
alter
table
lie_shop_push_sku_log
modify
column
init_status
tinyint
(
1
)
default
0
not
null
comment
'库存、时效初始化状态 -1:失败 1:成功'
;
alter
table
lie_shop_push_sku_log
change
audit_failed_msg
error_msg
varchar
(
512
)
default
''
not
null
comment
'异常信息'
;
\ No newline at end of file
tmp.txt
0 → 100644
View file @
e55be983
This diff is collapsed.
Click to expand it.
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