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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
prisma/schema.prisma
|
|
@ -203,11 +203,11 @@ model SymbolProfile { |
|
|
isActive Boolean @default(true) |
|
|
isActive Boolean @default(true) |
|
|
isin String? |
|
|
isin String? |
|
|
name String? |
|
|
name String? |
|
|
updatedAt DateTime @updatedAt |
|
|
|
|
|
scraperConfiguration Json? |
|
|
scraperConfiguration Json? |
|
|
sectors Json? |
|
|
sectors Json? |
|
|
symbol String |
|
|
symbol String |
|
|
symbolMapping Json? |
|
|
symbolMapping Json? |
|
|
|
|
|
updatedAt DateTime @updatedAt |
|
|
url String? |
|
|
url String? |
|
|
user User? @relation(fields: [userId], onDelete: Cascade, references: [id]) |
|
|
user User? @relation(fields: [userId], onDelete: Cascade, references: [id]) |
|
|
userId String? |
|
|
userId String? |
|
|
|