1 Star 0 Fork 2

wqsh001/Hello_email

forked from 李晓白/Hello_email 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
latest_database_1.sql 2.45 KB
一键复制 编辑 原始数据 按行查看 历史
sea 提交于 2018-04-23 13:04 . modify for smtpServer
/*==============================================================*/
/* DBMS name: MySQL 5.0 */
/* Created on: 2018/4/14 17:55:06 */
/*==============================================================*/
drop table if exists log;
drop table if exists mail;
drop table if exists mail_of_user;
drop table if exists user;
/*==============================================================*/
/* Table: log */
/*==============================================================*/
create table log
(
id int not null auto_increment,
excutor varchar(50) not null,
excution varchar(250) not null,
modify_time datetime not null,
state bool not null,
primary key (id)
);
alter table log comment '日志表
state如果为0代表失败,1为成功';
/*==============================================================*/
/* Table: mail */
/*==============================================================*/
create table mail
(
mail_id int not null auto_increment,
content text not null,
primary key (mail_id)
);
alter table mail comment '邮件内容';
/*==============================================================*/
/* Table: mail_of_user */
/*==============================================================*/
create table mail_of_user
(
user_id varchar(50) not null,
mail_id int not null,
watched bool not null default 0,
primary key (user_id, mail_id)
);
/*==============================================================*/
/* Table: user */
/*==============================================================*/
create table user
(
user_id varchar(50) not null,
password varchar(100) not null,
author smallint not null default 3,
admin bool not null default 0,
primary key (user_id)
);
alter table user comment '用户表
author值:第一位代表smtp权限,第二位代表pop3权限';
alter table mail_of_user add constraint FK_1 foreign key (user_id)
references user (user_id);
alter table mail_of_user add constraint FK_2 foreign key (mail_id)
references mail (mail_id);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wqsh001/Hello_email.git
git@gitee.com:wqsh001/Hello_email.git
wqsh001
Hello_email
Hello_email
master

搜索帮助