Salah satu opsi, sangat dinormalisasi adalah membuat tabel lebih mirip
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
);
di mana entri hanya ada di tabel notifikasi (pengguna/perusahaan/grup) yang relevan untuk setiap notifikasi yang diberikan.
(Saya tidak berpikir ada yang salah dengan kunci asing yang dapat dibatalkan dalam situasi di mana itu menunjukkan bahwa kunci asing adalah opsional, tetapi beberapa kunci asing dengan tipe yang sama memberikan kesan desain yang didenormalisasi)