mCaptcha/migrations/20210430032935_mcaptcha_pow_fetched_stats.sql

5 lines
177 B
MySQL
Raw Normal View History

2021-04-30 08:44:29 +03:00
CREATE TABLE IF NOT EXISTS mcaptcha_pow_fetched_stats (
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
2021-07-25 18:45:59 +03:00
time timestamptz NOT NULL DEFAULT now()
2021-04-30 08:44:29 +03:00
);