manifold/src/schema.rs

13 lines
307 B
Rust

// @generated automatically by Diesel CLI.
diesel::table! {
userinfo (user_id) {
user_id -> BigInt,
username -> Text,
weather_location -> Nullable<Text>,
weather_units -> Nullable<Text>,
timezone -> Nullable<Text>,
last_seen -> Nullable<BigInt>,
}
}