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
parent
commit
da674f9cfb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      prisma/schema.prisma

1
CHANGELOG.md

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Refactored the about pages to standalone - Refactored the about pages to standalone
- Made the `getByKey()` function generic in the property service - 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 Catalan (`ca`)
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)
- Improved the language localization for Portuguese (`pt`) - Improved the language localization for Portuguese (`pt`)

2
prisma/schema.prisma

@ -250,6 +250,7 @@ model User {
analytics Analytics? analytics Analytics?
apiKeys ApiKey[] apiKeys ApiKey[]
authChallenge String? authChallenge String?
authDevices AuthDevice[]
createdAt DateTime @default(now()) createdAt DateTime @default(now())
id String @id @default(uuid()) id String @id @default(uuid())
provider Provider @default(ANONYMOUS) provider Provider @default(ANONYMOUS)
@ -261,7 +262,6 @@ model User {
watchlist SymbolProfile[] @relation("UserWatchlist") watchlist SymbolProfile[] @relation("UserWatchlist")
Access Access[] @relation("accessGet") Access Access[] @relation("accessGet")
AccessGive Access[] @relation("accessGive") AccessGive Access[] @relation("accessGive")
AuthDevice AuthDevice[]
Settings Settings? Settings Settings?
SymbolProfile SymbolProfile[] SymbolProfile SymbolProfile[]

Loading…
Cancel
Save