Add a send to Transmission action
This commit is contained in:
parent
88419cbf97
commit
3f2b002f52
10 changed files with 952 additions and 83 deletions
|
|
@ -10,3 +10,15 @@ diesel::table! {
|
|||
published_at -> Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::table! {
|
||||
transmission_processed (id) {
|
||||
id -> Nullable<Integer>,
|
||||
magnet_id -> Integer,
|
||||
processed_at -> Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::joinable!(transmission_processed -> magnets (magnet_id));
|
||||
|
||||
diesel::allow_tables_to_appear_in_same_query!(magnets, transmission_processed,);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue