// @generated automatically by Diesel CLI. diesel::table! { chats (id) { id -> Integer, telegram_id -> BigInt, calendar -> Text, next_appointment_start -> Nullable, next_appointment_end -> Nullable, last_reminder -> Nullable, pinned_message_id -> Nullable, locale -> Nullable, } } diesel::table! { reminders (id) { id -> Integer, chat_id -> Integer, reminder_delta_hours -> BigInt, reminder_time -> Nullable, } } diesel::joinable!(reminders -> chats (chat_id)); diesel::allow_tables_to_appear_in_same_query!( chats, reminders, );