This repository has been archived on 2025-08-14. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
subscribe-list/src/schema.rs
2024-04-08 23:39:40 -07:00

21 lines
369 B
Rust

// @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,
);