After some research and trial and error I have found out how LC maps its string variables to MySQL datatypes.
* 1 <= n <= 255 ==> varchar(n) [ 2^8 - 1]
* 256 <= n <= 65.535 ==> text [2^16 - 1]
* 65536 <= n <= 4.294.967.295 ==> longtext [2^32 - 1]
Note: If you reduce the length of a string, the data type will not be changed.