5 lines
217 B
SQL
5 lines
217 B
SQL
CREATE TABLE profile_emoji (
|
|
profile_id UUID NOT NULL REFERENCES actor_profile (id) ON DELETE CASCADE,
|
|
emoji_id UUID NOT NULL REFERENCES emoji (id) ON DELETE CASCADE,
|
|
PRIMARY KEY (profile_id, emoji_id)
|
|
);
|