Add account type

This commit is contained in:
2025-04-14 23:25:45 +02:00
parent 342af2c443
commit 5a51dee8b0
16 changed files with 176 additions and 6 deletions

View File

@ -8,6 +8,9 @@ diesel::table! {
user_id -> Int4,
time_create -> Int8,
time_update -> Int8,
#[sql_name = "type"]
#[max_length = 1]
type_ -> Varchar,
default_account -> Bool,
}
}