mCaptcha/migrations/20210509135118_mcaptcha_pow_solved_stats.sql

5 lines
176 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS mcaptcha_pow_solved_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()
);