Shane
03/24/2021, 5:26 PMtext
column length limits? Prisma seems to set it to 191, without any way to specify in the schema, and I need much longer for some columns.Eddy Nguyen
03/24/2021, 9:57 PMmodel Something {
id Int @id @default(autoincrement())
longText String @db.Text
}
Shane
03/25/2021, 8:06 AM