Một tùy chọn, được chuẩn hóa cao là làm cho các bảng giống hơn
create table notifications(
notification_id serial primary key,
date_created timestamp not null default now(),
title_id text not null,
message_id text not null,
icon text not null default 'logo'
);
create table usernotifications
(
notification_id integer references notifications,
user_id integer references users
);
create table groupnotifications
(
notification_id integer references notifications,
group_id integer references groups
);
create table companynotifications
(
notification_id integer references notifications,
company_id integer references companies
);
nơi các mục nhập chỉ tồn tại trong bảng thông báo liên quan (người dùng / công ty / nhóm) cho bất kỳ thông báo nhất định nào.
(Tôi không nghĩ rằng có gì sai với các khóa ngoại có thể vô hiệu hóa trong tình huống cho biết rằng khóa ngoại là tùy chọn, nhưng nhiều khóa ngoại cùng loại tạo ra ấn tượng về một thiết kế không chuẩn hóa)