mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
fix(filters): external webhook remove jitter (#1254)
* fix(filters): external webhook remove jitter * fix: migrations --------- Co-authored-by: ze0s <ze0s@riseup.net>
This commit is contained in:
parent
4f20b2b3f6
commit
c5fb92ccf4
9 changed files with 148 additions and 177 deletions
|
@ -149,7 +149,6 @@ CREATE TABLE filter_external
|
|||
webhook_retry_status TEXT,
|
||||
webhook_retry_attempts INTEGER,
|
||||
webhook_retry_delay_seconds INTEGER,
|
||||
webhook_retry_max_jitter_seconds INTEGER,
|
||||
filter_id INTEGER NOT NULL,
|
||||
FOREIGN KEY (filter_id) REFERENCES filter(id) ON DELETE CASCADE
|
||||
);
|
||||
|
@ -1418,5 +1417,8 @@ DROP TABLE filter_external;
|
|||
|
||||
ALTER TABLE filter_external_dg_tmp
|
||||
RENAME TO filter_external;
|
||||
`,
|
||||
`ALTER TABLE filter_external
|
||||
DROP COLUMN external_webhook_retry_max_jitter_seconds;
|
||||
`,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue