This is my entity:
model Post {
....
content String?
....
}
This content should contain html string which is long. How can I achieve this?
I am using MSSQL. Is there a type varchar(max) or something?
Actually there is:
content String? @db.VarChar(MAX)
It is applicable for MSSQL I have not tried for other DB.