Skip to content
Snippets Groups Projects
Commit b0b8121f authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Add DECIMAL, remove ENUM

Former-commit-id: a1859ae5
parent 48965ade
Branches
Tags
No related merge requests found
...@@ -269,11 +269,12 @@ export default { ...@@ -269,11 +269,12 @@ export default {
fileLocation: null, fileLocation: null,
columns: [], columns: [],
columnTypes: [ columnTypes: [
{ value: 'ENUM', text: 'Enumeration' }, // { value: 'ENUM', text: 'Enumeration' }, // Disabled for now, not implemented, #145
{ value: 'BOOLEAN', text: 'Boolean' }, { value: 'BOOLEAN', text: 'Boolean' },
{ value: 'NUMBER', text: 'Number' }, { value: 'NUMBER', text: 'Number' },
{ value: 'BLOB', text: 'Binary Large Object' }, { value: 'BLOB', text: 'Binary Large Object' },
{ value: 'DATE', text: 'Date' }, { value: 'DATE', text: 'Date' },
{ value: 'DECIMAL', text: 'Decimal' },
{ value: 'STRING', text: 'Character Varying' }, { value: 'STRING', text: 'Character Varying' },
{ value: 'TEXT', text: 'Text' } { value: 'TEXT', text: 'Text' }
], ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment