]> Untitled Git - lemmy.git/blob - migrations/2023-06-21-153242_add_captcha/up.sql
feat: re-added captcha checks (#3289)
[lemmy.git] / migrations / 2023-06-21-153242_add_captcha / up.sql
1 create table captcha_answer (
2     id serial primary key,
3     uuid uuid not null unique default gen_random_uuid(),
4     answer text not null,
5     published timestamp not null default now()
6 );