sql
This commit is contained in:
+3
-3
@@ -23,7 +23,7 @@ create table lc_biz (
|
||||
c_time int(11) not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商家表'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商家表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:品牌表
|
||||
@@ -39,7 +39,7 @@ create table lc_biz_brand (
|
||||
c_time int(10) unsigned not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='品牌表'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='品牌表';
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:商家标签关系
|
||||
@@ -52,4 +52,4 @@ create table lc_biz_tagdata (
|
||||
tag_id int(10) unsigned not null comment '标签id',
|
||||
type tinyint(1) not null default '1' comment '1亮点标签 2附加标签',
|
||||
primary key (biz_id,tag_id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商家标签关系'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商家标签关系';
|
||||
|
||||
Reference in New Issue
Block a user