]> Untitled Git - lemmy.git/blob - migrations/2023-06-21-153242_add_captcha/up.sql
Fixing removed posts showing. Fixes #2875 (#3279)
[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 );