mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-23 18:05:54 +03:00
4 lines
179 B
SQL
4 lines
179 B
SQL
CREATE TABLE IF NOT EXISTS mcaptcha_pow_confirmed_stats (
|
|
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
|
|
time timestamptz NOT NULL DEFAULT now()
|
|
);
|