Add auto generated Diesel schema for users

This commit is contained in:
Ethan Girouard 2024-01-16 22:35:10 -05:00
parent a614bda4ab
commit 62c53fc69b
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

11
src/schema.rs Normal file
View File

@ -0,0 +1,11 @@
// @generated automatically by Diesel CLI.
diesel::table! {
users (id) {
id -> Int4,
username -> Varchar,
email -> Varchar,
password -> Varchar,
created_at -> Timestamp,
}
}