mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-02-24 20:38:56 +03:00
5 lines
177 B
MySQL
5 lines
177 B
MySQL
|
CREATE TABLE IF NOT EXISTS mcaptcha_pow_fetched_stats (
|
||
|
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
|
||
|
time timestamptz NOT NULL DEFAULT now()
|
||
|
);
|