forked from tsxcw/mtab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sql
More file actions
143 lines (129 loc) · 5.8 KB
/
install.sql
File metadata and controls
143 lines (129 loc) · 5.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
create table config
(
user_id int null,
config json null
);
create table history
(
id bigint auto_increment
primary key,
user_id int null,
link json null,
constraint history_id_uindex
unique (id)
)
comment 'link历史数据';
create table link
(
user_id int null,
link json null
);
create table link_folder
(
id int auto_increment comment 'id'
primary key,
name varchar(50) null comment '分类名称',
sort int default 0 null
)
comment '标签链接分类';
create table linkstore
(
id int auto_increment
primary key,
name varchar(255) null,
src varchar(255) null,
url varchar(255) null,
type varchar(20) default 'icon' null,
size varchar(20) default '1x1' null,
create_time datetime null,
hot bigint default 0 null,
area varchar(20) default '' null comment '专区',
tips varchar(255) null comment '介绍',
domain varchar(255) null,
app int default 0 null comment '是否app',
install_num int default 0 null comment '安装量',
constraint linkStore_id_uindex
unique (id)
);
create table note
(
id bigint auto_increment
primary key,
user_id bigint null,
title varchar(50) null,
text text null,
create_time datetime null,
update_time datetime null,
weight int default 0 null,
constraint note_id_uindex
unique (id)
);
create index note_user_id_index
on note (user_id);
create table setting
(
`keys` varchar(200) not null
primary key,
value text null
);
create table tabbar
(
user_id int null,
tabs json null
)
comment '用户页脚信息';
create table token
(
id bigint auto_increment
primary key,
user_id int null,
token tinytext null,
create_time int null,
ip tinytext null,
user_agent tinytext null,
constraint token_id_uindex
unique (id)
);
create table user
(
id int auto_increment
primary key,
mail varchar(50) null,
password tinytext null,
create_time datetime null,
login_ip varchar(100) null comment '登录IP',
register_ip varchar(100) null comment '注册IP',
manager int default 0 null,
login_fail_count int default 0 null,
login_time datetime null comment '登录时间',
constraint user_id_uindex
unique (id),
constraint user_mail_uindex
unique (mail)
);
create table card
(
id int auto_increment
primary key,
name varchar(200) null,
name_en varchar(200) null,
status int default 0 null,
version int default 0 null,
tips varchar(255) null comment '说明',
create_time datetime null comment '添加时间',
src text null comment 'logo',
url varchar(255) null comment '卡片地址',
`window` varchar(255) null comment '窗口地址',
update_time datetime null,
install_num int default 0 null
)
comment '卡片数据表';
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('Bilibili', '/static/bilibili.png', 'https://bilibili.com', 'icon', '1x1', '2022-11-07 21:51:42', 0, 'Bilibili弹幕视频网站Acg网站', 'bilibili.com,www.bilibili.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('蓝易云', '/static/tsy.png', 'https://www.tsyvps.com/aff/IRYIGFMX', 'icon', '1x1', '2022-11-07 22:02:41', 0, '蓝易云-持证高性价比服务器', 'www.tsyvps.com,tsyvps.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('ImgUrl', '/static/imgurl.png', 'https://imgurl.ink', 'icon', '1x1', '2022-11-07 22:05:46', 0, 'ImgUrl图床,图片外链', 'imgurl.ink,www.imgurl.ink', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('微博', '/static/weibo.png', 'http://weibo.com/', 'icon', '1x1', '2022-11-07 23:37:22', 1, '微博-随时随地发现新鲜事', 'weibo.com,www.weibo.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('火山翻译', '/static/huoshanfanyi.png', 'https://translate.volcengine.com/translate', 'icon', '1x1', '2022-11-07 23:42:49', 1, '火山翻译-字节跳动旗下机器翻译品牌', 'translate.volcengine.com', 1, 1);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('腾讯云', '/static/tencentcloud.png', 'https://cloud.tencent.com/', 'icon', '1x1', '2022-11-10 16:25:51', 1, '腾讯云', 'cloud.tencent.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('阿里云', '/static/aliyun.png', 'https://www.aliyun.com/', 'icon', '1x1', '2022-11-10 17:30:17', 1, '阿里云', 'www.aliyun.com,aliyun.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('腾讯视频', '/static/txsp.png', 'https://v.qq.com/channel/choice?channel_2022=1', 'icon', '1x1', '2022-12-19 19:34:45', 0, '腾讯视频', 'v.qq.com', 0, 0);
INSERT INTO linkstore (name, src, url, type, size, create_time, hot, tips, domain, app, install_num) VALUES ('记事本', '/static/note.png', '/noteApp', 'icon', '1x1', '2023-06-14 21:13:15', 1,'记事本App', '/noteApp', 1, 3);