F-migration-tool/prisma/models/tmp.prisma

17 lines
482 B
Plaintext

/// The underlying table does not contain a valid unique identifier and can therefore currently not be handled by Prisma Client.
model tmp {
id Int @db.UnsignedInt
prive String @db.VarChar(20)
public String @db.VarChar(20)
@@ignore
}
model tmp_vpn {
id Int @id
username String @db.VarChar(64)
password String @db.VarChar(64)
ad_done Boolean @default(false)
tacacs Boolean @default(false)
m Int @default(2000) @db.UnsignedInt
}