代码拉取完成,页面将自动刷新
同步操作将从 李晓白/Hello_email 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*==============================================================*/
/* 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);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。