affluence/src/db/schema.rs

13 lines
245 B
Rust
Raw Normal View History

2023-05-15 17:38:13 +02:00
// @generated automatically by Diesel CLI.
diesel::table! {
2023-05-16 15:47:13 +02:00
users (id) {
id -> Integer,
2023-05-15 17:38:13 +02:00
discord_id -> BigInt,
2023-05-16 15:47:13 +02:00
guild_id -> BigInt,
2023-05-15 17:38:13 +02:00
email -> Text,
first_name -> Text,
last_name -> Text,
}
}