alphadevx / alpha

Full-stack MVC framework for PHP.
http://www.alphaframework.org/
BSD 3-Clause "New" or "Revised" License
5 stars 0 forks source link

Add LargeText and HugeText data types #358

Closed alphadevx closed 4 years ago

alphadevx commented 4 years ago

Right now we have SmallText and Text, but they are not suitable if you want to store more text in the database. The following text types should be supported:

SmallText (255) Text (65535) LargeText (16777215) HugeText (4294967295)

Those sizes match the text sizes for the following text field types in MySQL:

TINYTEXT TEXT MEDIUMTEXT LONGTEXT