mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-06-08 07:06:40 +00:00
7 lines
224 B
SQL
7 lines
224 B
SQL
-- Add migration script here
|
|
CREATE TABLE IF NOT EXISTS mcaptcha_track_nonce (
|
|
nonce INTEGER NOT NULL DEFAULT 0,
|
|
level_id INTEGER references mcaptcha_levels(level_id) ON DELETE CASCADE,
|
|
ID SERIAL PRIMARY KEY NOT NULL
|
|
);
|