mirror of https://github.com/LemmyNet/lemmy.git
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
|
||
|
);
|