Implement Deluge support
This commit is contained in:
parent
9c993d7c04
commit
31d124dd82
21 changed files with 659 additions and 72 deletions
|
|
@ -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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue