Feature/eliminate platform from order (#63)

* Eliminate platform from order

* Update changelog
This commit is contained in:
Thomas
2021-05-03 21:19:56 +02:00
committed by GitHub
parent cf82066976
commit a84256dc03
7 changed files with 37 additions and 110 deletions

View File

@@ -68,8 +68,6 @@ model Order {
date DateTime
fee Float
id String @default(uuid())
Platform Platform? @relation(fields: [platformId], references: [id])
platformId String?
quantity Float
symbol String
type Type
@@ -85,7 +83,6 @@ model Platform {
Account Account[]
id String @id @default(uuid())
name String?
Order Order[]
url String @unique
}