1
+ drop database if exists ` app_store` ;
2
+
3
+ create database `app_store ` default character set utf8mb4;
4
+
5
+ use ` app_store` ;
6
+
1
7
create table `app_info ` (
2
8
` id` bigint (20 ) not null auto_increment comment ' 自增id, app的id' ,
3
9
` app_name` varchar (255 ) default ' ' comment ' 名称' ,
@@ -14,10 +20,8 @@ create table `app_info` (
14
20
` version_desc` varchar (4096 ) default ' ' comment ' ' ,
15
21
` create_time` datetime not null default ' 0000-00-00 00:00:00' comment ' 创建时间' ,
16
22
` update_time` datetime not null default ' 0000-00-00 00:00:00' comment ' 更新时间' ,
17
- primary key (` id` ),
18
- key ` idx_app_name` (` app_name` ),
19
- key ` idx_developer` (` user_id` )
20
- ) engine= innodb auto_increment= 100000 default charset= utf8 comment= ' app基本信息表' ;
23
+ primary key (` id` )
24
+ ) engine= innodb auto_increment= 100000 default charset= utf8mb4 comment= ' app基本信息表' ;
21
25
22
26
create table `app_ext_info ` (
23
27
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
@@ -27,9 +31,8 @@ create table `app_ext_info` (
27
31
` comment_count` int (10 ) unsigned not null default ' 0' comment ' 评论量' ,
28
32
` create_time` int (10 ) not null default 0 comment ' 创建时间' ,
29
33
` update_time` int (10 ) not null default 0 comment ' 更新时间' ,
30
- primary key (` id` ),
31
- unique key ` idx_app_id` (` app_id` )
32
- ) engine= innodb default charset= utf8 comment= ' App扩展信息表' ;
34
+ primary key (` id` )
35
+ ) engine= innodb default charset= utf8mb4 comment= ' App扩展信息表' ;
33
36
34
37
create table `app_category ` (
35
38
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
@@ -43,16 +46,15 @@ create table `app_category` (
43
46
` create_time` int (10 ) not null default 0 comment ' 创建时间' ,
44
47
` update_time` int (10 ) not null default 0 comment ' 更新时间' ,
45
48
primary key (` id` )
46
- ) engine= innodb default charset= utf8 comment= ' 分类信息表' ;
49
+ ) engine= innodb default charset= utf8mb4 comment= ' 分类信息表' ;
47
50
48
51
create table `app_category_rel ` (
49
52
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
50
53
` app_id` bigint (20 ) not null default ' 0' comment ' app_id' ,
51
54
` category_id` bigint (20 ) unsigned not null default ' 0' comment ' 最低层分类id' ,
52
55
primary key (` id` ),
53
56
unique key ` idx_category_app` (` category_id` ,` app_record_id` ),
54
- key ` idx_app` (` app_id` )
55
- ) engine= innodb default charset= utf8 comment= ' App和分类关联表' ;
57
+ ) engine= innodb default charset= utf8mb4 comment= ' App和分类关联表' ;
56
58
57
59
create table `app_comment ` (
58
60
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
@@ -70,7 +72,7 @@ create table `app_comment` (
70
72
` update_time` int (10 ) not null default 0 comment ' 更新时间' ,
71
73
primary key (` id` ),
72
74
key ` idx_app_status` (` app_id` , ` status` , ` top_flag` )
73
- ) engine= innodb default charset= utf8 comment= ' 评论信息表' ;
75
+ ) engine= innodb default charset= utf8mb4 comment= ' 评论信息表' ;
74
76
75
77
create table `user_app_relation ` (
76
78
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
@@ -81,7 +83,7 @@ create table `user_app_relation` (
81
83
` is_del` tinyint (4 ) not null default ' 0' comment ' 1:删除 0:未删除' ,
82
84
primary key (` id` ),
83
85
key ` idx_user_app` (` user_id` ,` app_id` )
84
- ) engine= innodb auto_increment= 8063 default charset= utf8 comment= ' 用户购买关系表' ;
86
+ ) engine= innodb auto_increment= 8063 default charset= utf8mb4 comment= ' 用户购买关系表' ;
85
87
86
88
create table `bot_score ` (
87
89
` id` bigint (20 ) not null auto_increment comment ' 自增id' ,
@@ -93,4 +95,4 @@ create table `bot_score` (
93
95
` update_time` int (10 ) not null default 0 comment ' 更新时间' ,
94
96
primary key (` id` ),
95
97
unique key ` idx_uid_score` (` app_id` ,` commenter_uid` )
96
- ) engine= innodb default charset= utf8 comment= ' App评分表' ;
98
+ ) engine= innodb default charset= utf8mb4 comment= ' App评分表' ;
0 commit comments