1 Star 2 Fork 0

海绵宝宝卖海绵/NetLoop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
database.sql 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
海绵宝宝卖海绵 提交于 2024-08-22 17:03 . 修改readme,添加图片
create database if not exists ChatCinema;
use ChatCinema;
create table if not exists rooms (
roomId int not null primary key,
roomName varchar(50) not null,
roomHost varchar(50) not null
);
create table if not exists historys (
historyId int not null primary key,
username varchar(50) not null,
message varchar(500) not null
);
create table if not exists roomHistorys(
historyId int not null,
roomId int not null,
primary key (historyId, roomId),
foreign key(roomId) references rooms(roomId),
foreign key(historyId) references historys(historyId)
);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llxGiteeSpace/net-loop.git
git@gitee.com:llxGiteeSpace/net-loop.git
llxGiteeSpace
net-loop
NetLoop
master

搜索帮助