Add a send to Transmission action

This commit is contained in:
Marc Plano-Lesay 2025-05-01 12:51:07 +10:00
parent 88419cbf97
commit 3f2b002f52
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
10 changed files with 952 additions and 83 deletions

View file

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