Christophe Rudyj
07/11/2022, 12:32 PM['Kala','Modern Horizon']
Vladi Stevanovic
Christophe Rudyj
07/11/2022, 3:17 PMVladi Stevanovic
Vladi Stevanovic
Christophe Rudyj
07/12/2022, 12:31 AMVladi Stevanovic
Vladi Stevanovic
But in the studio the item are there
Vladi Stevanovic
if i try to run this filter it fails
Vladi Stevanovic
if try to run this one it also fails
Vladi Stevanovic
model Box {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
set String @db.VarChar(255)
set_rel Sets @relation(fields: [set], references: [name])
box_number String @db.VarChar(100)
box_second_number String? @db.VarChar(100)
game_id Int? @default(1)
game_rel Games? @relation(fields: [game_id], references: [id])
store_id Int?
store_rel Store? @relation(fields: [store_id], references: [id])
}
nikolasburk
Sets
model from your Prisma schema? 🙂Christophe Rudyj
07/12/2022, 3:51 PMmodel Sets {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
name String @unique @db.VarChar(255)
code String? @db.VarChar(255)
game_id Int? @default(1)
game_rel Games? @relation(fields: [game_id], references: [id])
edition String?
children String[]
in_boxes Box[]
}