briangormanly / outfox

4 stars 1 forks source link

DataTypes are not accurate for use cases #57

Open briangormanly opened 3 years ago

briangormanly commented 3 years ago

Datatypes in general, but for Strings specifically need to be evaluated and updated where necessary.
Example: Resources uses DataTypes.STRING for description which uses a VARCHAR(255) see: https://sequelize.org/v5/manual/data-types.html

This should be a TEXT type in the db or DataTypes.TEXT (maybe TINYTEXT)..