Hey;
I have this model:
model ticketMessage {
messageId String @id
message Json
ticket ticket @relation(fields: [ticketId], references: [id])
ticketId Int
sender String
deleted Boolean @default(false)
edited String?
created_at DateTime @default(now())
}
But the "String"-Type is too short. is there a possibility to have lomger Strings stored?