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