lemmy/migrations/2023-06-21-153242_add_captcha/up.sql
2023-06-27 06:38:53 -04:00

7 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()
);