I am creating a table in MySQL for use in a Merchant module. The module is MySQL only.
I have a character field that needs to be 2048 characters maximum. If I was to do this to be compatible with MivaSQL, I believe I would need to make it a MEDIUMTEXT (MEMO) field.
Can I use VARCHAR(2048) (knowing it won't be MivaSQL compatible) or is there some gotcha I'm not aware of?
I have a character field that needs to be 2048 characters maximum. If I was to do this to be compatible with MivaSQL, I believe I would need to make it a MEDIUMTEXT (MEMO) field.
Can I use VARCHAR(2048) (knowing it won't be MivaSQL compatible) or is there some gotcha I'm not aware of?
Comment