mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-03 16:51:35 +00:00
7 lines
190 B
MySQL
7 lines
190 B
MySQL
|
create table captcha_answer (
|
||
|
id serial primary key,
|
||
|
uuid uuid not null unique default gen_random_uuid(),
|
||
|
answer text not null,
|
||
|
published timestamp not null default now()
|
||
|
);
|