代码拉取完成,页面将自动刷新
# 创建数据库
drop database if exists blog_db;
create database blog_db character set utf8mb4 collate utf8mb4_general_ci;
# 选择数据库
use blog_db;
# 创建表
drop table if exists user;
create table user (
id bigint primary key auto_increment comment '用户Id,自增',
username varchar(50) unique not null comment '用户名',
password varchar(50) not null comment '密码'
);
drop table if exists blog;
create table blog (
id bigint primary key auto_increment comment 'Id,自增',
title varchar(1024) not null comment '标题',
content text not null comment '内容',
createTime datetime not null comment '发布时间',
userId bigint not null
);
insert into user values (null, '张三', '123456');
insert into user values (null, '李四', '123456');
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。