mCaptcha/migrations/20210310122617_mcaptcha_config.sql

7 lines
269 B
SQL

CREATE TABLE IF NOT EXISTS mcaptcha_config (
config_id SERIAL PRIMARY KEY NOT NULL,
user_id INTEGER NOT NULL references mcaptcha_users(ID) ON DELETE CASCADE,
key varchar(100) NOT NULL UNIQUE,
name varchar(100) DEFAULT NULL,
duration integer NOT NULL DEFAULT 30
);