style:修改sql格式

This commit is contained in:
禾几海
2020-08-14 17:14:17 +08:00
parent aa751dbba1
commit 6eb7d01875

View File

@@ -34,6 +34,7 @@ CREATE TABLE `tag_category`
`is_category` boolean not null default true,
`is_delete` boolean not null default false comment '该数据是否被删除'
);
-- 文章表
CREATE TABLE `article`
(
@@ -55,6 +56,7 @@ CREATE TABLE `article`
foreign key (a_category_id) references tag_category (t_id),
foreign key (a_author_id) references user (u_id)
);
-- 文章标签表
CREATE TABLE `article_tag`
(
@@ -79,6 +81,7 @@ CREATE TABLE `comment`
foreign key (co_from_author_id) references user (u_id),
foreign key (co_to_author_id) references user (u_id)
);
-- 友站表
CREATE TABLE `links`
(
@@ -92,6 +95,7 @@ CREATE TABLE `links`
`l_email` varchar(255) comment '网站管理员的邮箱',
`l_notification` boolean default false comment '是否通知了'
);
-- 访客表
CREATE TABLE `visitor`
(