1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-25 15:09:19 +00:00
lemmy/migrations/2023-06-21-153242_add_captcha/up.sql

7 lines
190 B
MySQL
Raw Normal View History

2023-06-27 11:38:53 +01:00
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()
);