mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-04-02 06:33:28 +03:00
8 lines
306 B
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()
|
|
);
|