affluence/src/db/schema.rs

11 lines
202 B
Rust
Raw Normal View History

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