{{ forms.selectField({
label: "Column Type"|t('app'),
id: 'column-type',
name: 'columnType',
instructions: "The type of column this field should get in the database."|t('app'),
options: [
{ value: 'text', label: 'text (~64KB)' },
{ value: 'mediumtext', label: 'mediumtext (~16MB)' },
],
value: field.columnType,
warning: (field.id ? "Changing this may result in data loss."|t('app')),
}) }}