Add admin column to users table

This commit is contained in:
2024-05-18 20:41:02 -04:00
parent 7bcb5f8c04
commit 6ae55d5cfc
5 changed files with 6 additions and 0 deletions

View File

@ -50,6 +50,7 @@ diesel::table! {
email -> Varchar,
password -> Varchar,
created_at -> Timestamp,
admin -> Bool,
}
}