mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 01:30:00 +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
|
|
);
|