एक विकल्प, अत्यधिक सामान्यीकृत तालिका को अधिक समान बनाना है
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
);
जहां प्रविष्टियां किसी भी अधिसूचना के लिए केवल प्रासंगिक (उपयोगकर्ता/कंपनी/समूह) अधिसूचना तालिका में मौजूद हैं।
(मुझे नहीं लगता कि उस स्थिति में अशक्त विदेशी कुंजी के साथ कुछ भी गलत है जहां यह इंगित करता है कि विदेशी कुंजी वैकल्पिक है, लेकिन समान प्रकार की कई विदेशी कुंजियां एक असामान्य डिजाइन की छाप देती हैं)