Toggle navigation
Toggle navigation
This project
Loading...
Sign in
qianjun
/
yohobuy-doc
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
mali
2016-03-22 18:11:56 +0800
Commit
78b7d7ff27ad0a2349dfda26a75acdac2f37334d
1 parent
ce101944
alter table yh_shops.product add column source_flag enum('0', '1') default '0' …
…COMMENT '新平台发布的商品为1 原来则为0';
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
inferface-document/database/net_sale.sql
inferface-document/database/net_sale.sql
View file @
78b7d7f
...
...
@@ -88,7 +88,7 @@ create table product_shop_relation(
Alter
table
product_shop_relation
add
primary
key
(
product_skn
,
shop_id
);
-- 标识商品是否是新平台的商品
alter
table
yh_shops
.
product
add
column
source_flag
smallint
default
'0'
COMMENT
'新平台发布的商品为1 原来则为0'
;
alter
table
yh_shops
.
product
add
column
source_flag
enum
(
'0'
,
'1'
)
default
'0'
COMMENT
'新平台发布的商品为1 原来则为0'
;
...
...
Please
register
or
login
to post a comment