what2watch/migrations/20240116054301_follows.up.sql

12 lines
491 B
SQL

create table if not exists follows (
follower blob not null,
followee blob not null,
created_at text not null default CURRENT_TIMESTAMP,
foreign key (follower) references users (id) on delete cascade on update no action,
foreign key (followee) references users (id) on delete cascade on update no action,
unique (follower, followee)
);
create index if not exists follows_follower_dex on follows (follower);
create index if not exists follows_followee_dex on follows (followee);