mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-27 11:59:56 +03:00
4 lines
187 B
SQL
4 lines
187 B
SQL
CREATE TABLE IF NOT EXISTS mcaptcha_pow_confirmed_stats (
|
|
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
|
|
confirmed_at timestamptz NOT NULL DEFAULT now()
|
|
);
|