mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-27 20:07:58 +03:00
6 lines
218 B
SQL
6 lines
218 B
SQL
CREATE TABLE IF NOT EXISTS mcaptcha_levels (
|
|
config_id INTEGER references mcaptcha_config(config_id),
|
|
difficulty_factor INTEGER NOT NULL,
|
|
visitor_threshold INTEGER NOT NULL,
|
|
level_id SERIAL PRIMARY KEY NOT NULL
|
|
);
|