mCaptcha/db/db-sqlx-postgres/migrations/20210430032935_mcaptcha_pow_fetched_stats.sql

5 lines
177 B
MySQL
Raw Normal View History

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