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

6 lines
126 B
MySQL
Raw Normal View History

2023-06-23 03:47:12 -06:00
create table captcha_answer (
uuid text not null primary key,
answer text not null,
expires timestamp not null
);