简单私人消息传递的数据库设计

发布于 2024-10-10 04:53:25 字数 305 浏览 2 评论 0原文

概念很简单:

  1. 用户点击其中一个广告上的“发送私信”按钮。

  2. 弹出窗口,包含“标题”框、“消息”框和发送按钮。

  3. 收件人看到一条包含以下信息的消息:“发件人姓名”、“接收日期”、“标题”和“消息”。

  4. 收件人通过填写“标题”和“消息”进行回复,然后按回复。

  5. 重复步骤 3。

不会存储 IP。

您能给我一个如何进行简洁/高效的关系设计的想法吗?

The concept is simple:

  1. User click "Send PM" button on one of ads.

  2. Window pop up with "Title" box, "Message" box and send button.

  3. Recipient sees a message with following info: "Sender Name", "Date Received", "Title" and "Message".

  4. Recipient replies by filling: "Title" and "Message" and press reply.

  5. Repeat step 3.

No IP will be stored.

Can you please give me an idea how to make a concise/efficient relational design?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骷髅 2024-10-17 04:53:25

消息表格式

消息

Id 
UserID
Message
Send_DateTime
Title
Message_Id ( FK )- self referance

自引用是为了跟踪整个聊天。

对于第一条消息,其为 NULL,然后是相关消息的 id

Id     UserID    Message    Send_DateTime    Title    Message_Id ( FK )- self referance
1       1         test       datetime        tt       Null
2       2         test1      datetime        tt        1
3       1         test2      datetime        tt        2
...

go on 

Message table formate

Message

Id 
UserID
Message
Send_DateTime
Title
Message_Id ( FK )- self referance

self referance is to keep the track of the whole chat.

for the first message its NULL and than onwards id of relative meesage

Id     UserID    Message    Send_DateTime    Title    Message_Id ( FK )- self referance
1       1         test       datetime        tt       Null
2       2         test1      datetime        tt        1
3       1         test2      datetime        tt        2
...

go on 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文