Add all connectors

This commit is contained in:
2025-03-17 21:11:36 +01:00
parent 64b672dc63
commit 56fbae6adc
20 changed files with 3505 additions and 24 deletions

View File

@ -60,7 +60,7 @@ diesel::table! {
time_update -> Int8,
user_id -> Int4,
#[max_length = 150]
token -> Varchar,
token_value -> Varchar,
time_used -> Int8,
max_inactivity -> Nullable<Int4>,
#[max_length = 50]
@ -95,11 +95,4 @@ diesel::joinable!(movement -> account (account_id));
diesel::joinable!(movement -> attachment (attachment_id));
diesel::joinable!(token -> users (user_id));
diesel::allow_tables_to_appear_in_same_query!(
account,
attachment,
inbox,
movement,
token,
users,
);
diesel::allow_tables_to_appear_in_same_query!(account, attachment, inbox, movement, token, users,);