Files
psp_api/prisma/schema/mdm.prisma
T

13 lines
371 B
Plaintext
Raw Normal View History

model Bank {
id Int @id @default(autoincrement())
name String @db.VarChar(255)
shortName String @unique() @db.VarChar(3)
createdAt DateTime @default(now()) @db.Timestamp(0)
updatedAt DateTime @updatedAt @db.Timestamp(0)
deletedAt DateTime? @db.Timestamp(0)
bankBranches BankBranch[] @relation("bank_branches")
@@map("Banks")
}