Browse Source

Task/reorder updatedAt field in symbol profile data model (#7270)

Reorder updatedAt
pull/7266/head^2
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
9d98799b47
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      prisma/schema.prisma

2
prisma/schema.prisma

@ -203,11 +203,11 @@ model SymbolProfile {
isActive Boolean @default(true)
isin String?
name String?
updatedAt DateTime @updatedAt
scraperConfiguration Json?
sectors Json?
symbol String
symbolMapping Json?
updatedAt DateTime @updatedAt
url String?
user User? @relation(fields: [userId], onDelete: Cascade, references: [id])
userId String?

Loading…
Cancel
Save