]> Untitled Git - lemmy.git/blob - migrations/2023-06-21-153242_add_captcha/up.sql
71467be6182e8e09eb5f93a09ef3b115306cd4d1
[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 );