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