|
|
-- 品牌增加授权证书,注册证书
|
|
|
create table erp_product.brand_authorize_cert (
|
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
`brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '品牌id',
|
|
|
`cert_url` varchar(500) DEFAULT NULL COMMENT '授权证书url',
|
|
|
`order_by` int(11) DEFAULT '0' COMMENT '序值',
|
|
|
PRIMARY KEY (`id`)
|
|
|
)ENGINE=MyISAM DEFAULT CHARSET=utf8; |
|
|
\ No newline at end of file |
...
|
...
|
|