mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 03:57:47 -04:00
16 lines
258 B
SQL
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
|