// @generated automatically by Diesel CLI. diesel::table! { accounts (email) { email -> Text, date -> Timestamp, } } diesel::table! { keys (id) { id -> Integer, #[sql_name = "email-unsubscribe-url"] email_unsubscribe_url -> Binary, } } diesel::allow_tables_to_appear_in_same_query!( accounts, keys, );