码迷,mamicode.com
首页 > 其他好文 > 详细

站内信表结构设计

时间:2015-04-24 15:42:18      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

站内信表结构设计 一个人可以点对点发 点对群发  但是双方都可以选择自己是否删除 同时管理员能看到全部 的表结构设计

create table message_sender(
mid int unsigned not null primary key auto_increment comment 站内信自增id,
from_uid int unsigned not null default 0 comment 发信人id,
from_username varchar(30) not null default ‘‘ comment 发信人姓名,
title varchar(200) not null default ‘‘ comment 信息标题,
content text not null comment 信息内容,
from_deleted tinyint unsigned not null default 0 comment 是否被发信人删除,
date_time int unsigned not null default 0 comment 发信时间
)charset utf8 comment 用户站内信发送表;

create table message_receiver(
rid int unsigned not null primary key auto_increment comment 自增id,
mid int unsigned not null default 0 comment 关联站内信id,
to_uid int unsigned not null default 0 comment 收信人id,
to_username varchar(30) not null default ‘‘ comment 收信人姓名,
is_readed  tinyint unsigned not null default 0 comment 是否被收信人阅读,
is_deleted tinyint unsigned not null default 0 comment 是否被收信人删除,
)charset utf8 comment 用户站内信接收表;

 

站内信表结构设计

标签:

原文地址:http://www.cnblogs.com/lizhaoyao/p/4453526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!