1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 09:24:31 +00:00
GoBlog/dbmigrations/00027.sql
2022-04-16 21:42:09 +02:00

7 lines
224 B
SQL

create table reactions (
path text not null,
reaction text not null,
count integer default 0,
primary key (path, reaction),
foreign key (path) references posts(path) on update cascade on delete cascade
);