mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-05-03 05:32:49 +03:00
feat: store pow performance statistics against statistics
This commit is contained in:
parent
2a1bda653d
commit
5ae3b1f26e
8 changed files with 293 additions and 0 deletions
db/db-sqlx-postgres/migrations
|
@ -0,0 +1,8 @@
|
|||
CREATE TABLE IF NOT EXISTS mcaptcha_pow_analytics (
|
||||
config_id INTEGER references mcaptcha_config(config_id) ON DELETE CASCADE,
|
||||
time INTEGER NOT NULL,
|
||||
difficulty_factor INTEGER NOT NULL,
|
||||
worker_type VARCHAR(100) NOT NULL UNIQUE,
|
||||
ID SERIAL PRIMARY KEY NOT NULL
|
||||
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue