lemmy/migrations/2023-06-21-153242_add_captcha/up.sql
2023-06-23 11:47:12 +02:00

6 lines
126 B
SQL

create table captcha_answer (
uuid text not null primary key,
answer text not null,
expires timestamp not null
);