]> Untitled Git - lemmy.git/blob - migrations/2023-06-21-153242_add_captcha/up.sql
add enable_federated_downvotes site option
[lemmy.git] / migrations / 2023-06-21-153242_add_captcha / up.sql
1 CREATE TABLE captcha_answer (
2     id serial PRIMARY KEY,
3     uuid uuid NOT NULL UNIQUE DEFAULT gen_random_uuid (),
4     answer text NOT NULL,
5     published timestamp NOT NULL DEFAULT now()
6 );
7