11 lines
206 B
Rust
11 lines
206 B
Rust
// @generated automatically by Diesel CLI.
|
|
|
|
diesel::table! {
|
|
users (id) {
|
|
id -> Int4,
|
|
username -> Varchar,
|
|
hashed_password -> Varchar,
|
|
created_at -> Timestamptz,
|
|
}
|
|
}
|