Alter table erp_product.product ADD column `is_info_miss` enum('Y', 'N') default…
… 'Y' COMMENT '是否信息缺失';
Showing
1 changed file
with
1 additions
and
0 deletions
@@ -9,6 +9,7 @@ alter table erp_product.product add column shelve_time int(10) unsigned DEFAULT | @@ -9,6 +9,7 @@ alter table erp_product.product add column shelve_time int(10) unsigned DEFAULT | ||
9 | alter table erp_product.product add column `stock` smallint(6) DEFAULT 0 COMMENT '库存'; | 9 | alter table erp_product.product add column `stock` smallint(6) DEFAULT 0 COMMENT '库存'; |
10 | alter table erp_product.product add column `next_status` smallint COMMENT '下一流程状态'; | 10 | alter table erp_product.product add column `next_status` smallint COMMENT '下一流程状态'; |
11 | Alter table erp_product.product ADD column `founder` int(11) COMMENT '操作人'; | 11 | Alter table erp_product.product ADD column `founder` int(11) COMMENT '操作人'; |
12 | +Alter table erp_product.product ADD column `is_info_miss` enum('Y', 'N') default 'Y' COMMENT '是否信息缺失'; | ||
12 | create index product_edittime on product(`edit_time`); | 13 | create index product_edittime on product(`edit_time`); |
13 | 14 | ||
14 | create table product_ext( | 15 | create table product_ext( |
-
Please register or login to post a comment