Fixing issue #3740 - using text rather than string for mysql/postgres table column creation.

This commit is contained in:
mike12345567 2022-01-07 14:10:26 +00:00
parent c75cc47ad3
commit e93d347ad6
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function generateSchema(
case FieldTypes.STRING:
case FieldTypes.OPTIONS:
case FieldTypes.LONGFORM:
schema.string(key)
schema.text(key)
break
case FieldTypes.NUMBER:
// if meta is specified then this is a junction table entry