#Long Strings

1 messages · Page 1 of 1 (latest)

hasty trellis
#

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?

fallen sun
#

Hey 👋
Which database are you using?