adxvcasas - Hello, so right now I have checkbox...
Hello, so right now I have checkbox wherein I can store multiple strings inside an array, but the problem i'm encountering right now is when I'm storing it to my database mysql using prisma orm , I get a warning of
Now the question is, is there any possible way to store multiple strings without storing it into array?
Field "doesHaveTCETAssitance" in model "AppoinmentSchedule" can't be a list. The current connector does not support lists of primitive types.Prisma, because I set doesHaveTCETAssitance to doesHaveTCETAssitance String[] which is not supported by prisma mysql.Now the question is, is there any possible way to store multiple strings without storing it into array?