Browse Source
Feature/rename Authdevice to authdevices in User database schema (#5084)
* Rename AuthDevice to authDevices in User database schema
* Update changelog
pull/5085/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
prisma/schema.prisma
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Refactored the about pages to standalone |
|
|
|
- Made the `getByKey()` function generic in the property service |
|
|
|
- Renamed `AuthDevice` to `authDevices` in the `User` database schema |
|
|
|
- Improved the language localization for Catalan (`ca`) |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
- Improved the language localization for Portuguese (`pt`) |
|
|
|
|
|
@ -250,6 +250,7 @@ model User { |
|
|
|
analytics Analytics? |
|
|
|
apiKeys ApiKey[] |
|
|
|
authChallenge String? |
|
|
|
authDevices AuthDevice[] |
|
|
|
createdAt DateTime @default(now()) |
|
|
|
id String @id @default(uuid()) |
|
|
|
provider Provider @default(ANONYMOUS) |
|
|
@ -261,7 +262,6 @@ model User { |
|
|
|
watchlist SymbolProfile[] @relation("UserWatchlist") |
|
|
|
Access Access[] @relation("accessGet") |
|
|
|
AccessGive Access[] @relation("accessGive") |
|
|
|
AuthDevice AuthDevice[] |
|
|
|
Settings Settings? |
|
|
|
SymbolProfile SymbolProfile[] |
|
|
|
|
|
|
|