mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-05-03 21:52:49 +03:00
feat: add psuedo ID support to publish campaign IDs
This commit is contained in:
parent
8af09939ff
commit
68b59ade8c
11 changed files with 352 additions and 0 deletions
db/db-sqlx-postgres/migrations
|
@ -0,0 +1,5 @@
|
|||
CREATE TABLE IF NOT EXISTS mcaptcha_psuedo_campaign_id (
|
||||
id SERIAL PRIMARY KEY NOT NULL,
|
||||
config_id INTEGER NOT NULL references mcaptcha_config(config_id) ON DELETE CASCADE,
|
||||
psuedo_id varchar(100) NOT NULL UNIQUE
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue