mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-03-30 15:08:29 +00:00
15 lines
420 B
SQL
15 lines
420 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_fetched_stats (
|
|
config_id INTEGER NOT NULL,
|
|
time timestamp NOT NULL DEFAULT now(),
|
|
CONSTRAINT `fk_mcaptcha_config_id_pow_fetched_stats`
|
|
FOREIGN KEY (config_id)
|
|
REFERENCES mcaptcha_config (config_id)
|
|
ON DELETE CASCADE
|
|
ON UPDATE CASCADE
|
|
|
|
);
|