no-password

This commit is contained in:
2025-10-30 01:43:07 +01:00
parent b9966f82a0
commit f89c6bb259
11 changed files with 483 additions and 212 deletions
-2
View File
@@ -112,7 +112,6 @@ pub struct Tenant {
pub struct User {
pub id: Uuid,
pub username: String,
pub password_hash: String,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
}
@@ -122,7 +121,6 @@ pub struct User {
pub struct NewUser {
pub id: Uuid,
pub username: String,
pub password_hash: String,
}
#[derive(Debug, Clone, Queryable, Identifiable, Associations, Selectable)]