lemmy/migrations/2023-06-21-153242_add_captcha/up.sql

6 lines
126 B
SQL

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