mCaptcha/migrations/20210310122617_mcaptcha_config.sql

7 lines
204 B
MySQL
Raw Normal View History

2021-03-10 20:43:25 +05:30
CREATE TABLE IF NOT EXISTS mcaptcha_config (
config_id SERIAL PRIMARY KEY NOT NULL,
ID INTEGER references mcaptcha_users(ID),
key VARCHAR(100) NOT NULL UNIQUE,
duration INTEGER NOT NULL DEFAULT 30
2021-03-10 20:43:25 +05:30
);