mCaptcha/migrations/20210430032935_mcaptcha_pow_fetched_stats.sql

5 lines
177 B
MySQL
Raw Normal View History

2021-04-30 11:14:29 +05:30
CREATE TABLE IF NOT EXISTS mcaptcha_pow_fetched_stats (
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
2021-07-25 21:15:59 +05:30
time timestamptz NOT NULL DEFAULT now()
2021-04-30 11:14:29 +05:30
);