Files
cipher/cipher_database/src/mysql/schema.rs
2026-01-29 19:03:34 +00:00

27 lines
549 B
Rust

// @generated automatically by Diesel CLI.
diesel::table! {
staff_roles (id) {
id -> Integer,
discord_role_id -> Bigint,
}
}
diesel::table! {
users (id) {
id -> Integer,
discord_user_id -> Bigint,
#[max_length = 32]
pokemon_go_code -> Nullable<Varchar>,
#[max_length = 32]
pokemon_pocket_code -> Nullable<Varchar>,
#[max_length = 32]
switch_code -> Nullable<Varchar>,
}
}
diesel::allow_tables_to_appear_in_same_query!(
staff_roles,
users,
);