1 Star 0 Fork 0

天涯明月笙/FlaskGetStarted

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
artcms.sql 917 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
用户表
0. id编号
1. 账号
2. 密码
3. 注册时间
*/
CREATE TABLE if NOT EXISTS user(
id int unsigned not null auto_increment key comment "主键ID",
account varchar(20) not null comment "账号",
pwd varchar(100) not null comment "密码",
addtime datetime not null comment "注册时间"
)engine=InnoDB DEFAULT charset=utf8 comment "用户";
/*
文章表
0. id编号
1. 标题
2. 分类
3. 作者
4. 封面
5. 内容
6. 发布时间
*/
CREATE TABLE if NOT EXISTS article(
id int unsigned not null auto_increment key comment "主键ID",
title varchar(100) not null comment "标题",
category tinyint unsigned not null comment "分类",
user_id int unsigned not null comment "作者",
logo varchar(100) not null comment "封面",
content mediumtext not null comment "文章",
addtime datetime not null comment "发表时间"
)engine=InnoDB DEFAULT charset=utf8 comment "文章";
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mtianyan/FlaskGetStarted.git
git@gitee.com:mtianyan/FlaskGetStarted.git
mtianyan
FlaskGetStarted
FlaskGetStarted
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385