Update platform2.1.sql
Showing
1 changed file
with
8 additions
and
0 deletions
1 | +-- 品牌增加授权证书,注册证书 | ||
2 | +create table erp_product.brand_authorize_cert ( | ||
3 | + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, | ||
4 | + `brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '品牌id', | ||
5 | + `cert_url` varchar(500) DEFAULT NULL COMMENT '授权证书url', | ||
6 | + `order_by` int(11) DEFAULT '0' COMMENT '序值', | ||
7 | + PRIMARY KEY (`id`) | ||
8 | +)ENGINE=MyISAM DEFAULT CHARSET=utf8; |
-
Please register or login to post a comment