Implement Deluge support

This commit is contained in:
Marc Plano-Lesay 2025-05-07 18:19:34 +10:00
parent 9c993d7c04
commit 31d124dd82
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
21 changed files with 659 additions and 72 deletions

View file

@ -0,0 +1,9 @@
CREATE TABLE deluge_processed
(
id INTEGER PRIMARY KEY NOT NULL,
magnet_id INTEGER NOT NULL,
processed_at DATETIME NOT NULL,
FOREIGN KEY (magnet_id) REFERENCES magnets (id)
);
CREATE INDEX deluge_processed_magnet_id ON deluge_processed (magnet_id);