mCaptcha/db/db-sqlx-postgres/migrations/20210310122617_mcaptcha_config.sql

8 lines
265 B
MySQL
Raw Normal View History

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) NOT NULL,
duration integer NOT NULL DEFAULT 30
);