mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-12-18 03:42:04 +03:00
7 lines
294 B
SQL
7 lines
294 B
SQL
CREATE TABLE IF NOT EXISTS mcaptcha_config (
|
|
config_id SERIAL PRIMARY KEY NOT NULL,
|
|
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
|
|
);
|