mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
6 lines
190 B
SQL
6 lines
190 B
SQL
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()
|
|
);
|