mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
5 lines
126 B
SQL
5 lines
126 B
SQL
create table captcha_answer (
|
|
uuid text not null primary key,
|
|
answer text not null,
|
|
expires timestamp not null
|
|
);
|