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