1
0
Fork 0
mirror of https://github.com/mCaptcha/mCaptcha.git synced 2025-04-02 06:33:28 +03:00
mCaptcha/db/db-sqlx-postgres/migrations/20210509135118_mcaptcha_pow_solved_stats.sql

8 lines
306 B
SQL

-- SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
--
-- SPDX-License-Identifier: AGPL-3.0-or-later
CREATE TABLE IF NOT EXISTS mcaptcha_pow_solved_stats (
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
time timestamptz NOT NULL DEFAULT now()
);