mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
6 lines
126 B
MySQL
6 lines
126 B
MySQL
|
create table captcha_answer (
|
||
|
uuid text not null primary key,
|
||
|
answer text not null,
|
||
|
expires timestamp not null
|
||
|
);
|