{% import 'macros/form.html' as form %} {# Data Dictionary fields may be added this snippet. New fields following the 'info__' ~ position ~ '__namegoeshere' convention will be saved as part of the "info" object on the column. #} {% set options=[ {'text': '', 'value': ''}, {'text': 'Text', 'value': 'text'}, {'text': 'Integer', 'value': 'int4'}, {'text': 'Decimal', 'value': 'numeric'}, {'text': 'Float', 'value': 'float8'}, {'text': 'Date', 'value': 'date'}, {'text': 'Time', 'value': 'time'}, {'text': 'Timestamp', 'value': 'timestamp'}, {'text': 'Byte array', 'value': 'bytea'}, {'text': 'Array[Integer]', 'value': '_int4'}, {'text': 'Array[Text]', 'value': '_text'}, ] %}