You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2023-06-21-153242_add_captcha/up.sql

8 lines
192 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()
);