我有一张表user_notifications
:
我有多种类型的通知,例如:
Deal Notification
Promotion Notification
Followed Notification
Follow Request Notification
Voucher Notification
Post Comment Notification
Tagged Notification
等
每个type
通知,都有自己的表格,如:Deal
有Deal Table
,Promotion
有Promotion Table
等,点击通知时它将链接到该表中的数据。
目前,我有主表user_notifications
来存储所有types
共享的通用数据:notification_id
,Created_date
,Sender_id
,{{1}等等
以及多个辅表:Receiver_id
,n_deal
,n_promotion
等
在检索特定类型的数据时将加入n_followed
对于这种情况,这是正确的表结构设计吗?