mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
Autologin via ?hash=xxx parameter in url
This commit is contained in:
parent
2575cbfc11
commit
6bd01aaa45
8 changed files with 64 additions and 4 deletions
|
|
@ -11,6 +11,7 @@ model account {
|
|||
user_id Int @id @default(autoincrement()) @db.UnsignedInt
|
||||
username String @unique @db.VarChar(255)
|
||||
password String @db.VarChar(60)
|
||||
hash String @unique @db.VarChar(512)
|
||||
is_admin Boolean @default(false)
|
||||
created_at DateTime? @default(now()) @db.Timestamp(0)
|
||||
updated_at DateTime? @default(now()) @db.Timestamp(0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue