12 lines
223 B
Rust
12 lines
223 B
Rust
// @generated automatically by Diesel CLI.
|
|
|
|
diesel::table! {
|
|
users (id) {
|
|
id -> Int4,
|
|
username -> Varchar,
|
|
email -> Varchar,
|
|
password -> Varchar,
|
|
created_at -> Timestamp,
|
|
}
|
|
}
|