mCaptcha/migrations/20210310122617_mcaptcha_config.sql

8 lines
294 B
MySQL
Raw Normal View History

2021-03-10 18:13:25 +03:00
CREATE TABLE IF NOT EXISTS mcaptcha_config (
config_id SERIAL PRIMARY KEY NOT NULL,
2021-03-26 19:48:01 +03:00
domain_name varchar(100) NOT NULL references mcaptcha_domains_verified(name) ON DELETE CASCADE,
key varchar(100) NOT NULL UNIQUE,
name varchar(100) NOT NULL UNIQUE,
duration integer NOT NULL DEFAULT 30
2021-03-10 18:13:25 +03:00
);