Create users table

This commit is contained in:
2026-06-26 18:05:56 -04:00
parent fb3afaf31c
commit 773d8dffd1
3 changed files with 19 additions and 0 deletions

View File

@@ -1 +1,10 @@
// @generated automatically by Diesel CLI.
diesel::table! {
users (id) {
id -> Int4,
username -> Varchar,
hashed_password -> Varchar,
created_at -> Timestamptz,
}
}