mCaptcha/migrations/20210509135118_mcaptcha_pow_solved_stats.sql
2021-05-09 19:33:28 +05:30

4 lines
181 B
SQL

CREATE TABLE IF NOT EXISTS mcaptcha_pow_solved_stats (
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
solved_at timestamptz NOT NULL DEFAULT now()
);