@reldens/storage 0.47.0 → 0.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -193,6 +193,10 @@ class EntitiesGenerator
193
193
  props.push('type: \'datetime\'');
194
194
  return;
195
195
  }
196
+ if('text' === type || 'longtext' === type || 'mediumtext' === type || 'tinytext' === type){
197
+ props.push('type: \'textarea\'');
198
+ return;
199
+ }
196
200
  if('tinyint' === type){
197
201
  props.push('type: \'boolean\'');
198
202
  return;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@reldens/storage",
3
3
  "scope": "@reldens",
4
- "version": "0.47.0",
4
+ "version": "0.48.0",
5
5
  "description": "Reldens - Storage",
6
6
  "author": "Damian A. Pastorini",
7
7
  "license": "MIT",