PronounsPage/migrations/081-blog-reactions.sql
2024-09-22 17:07:35 +02:00

16 lines
258 B
SQL

-- Up
create table blog_reactions
(
id TEXT not null
primary key,
locale TEXT not null,
slug TEXT not null,
emoji TEXT not null,
user_id TEXT not null
references users
on delete cascade
);
-- Down