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

Add DECIMAL, remove ENUM

parent c9a96bb2
No related branches found
No related tags found
3 merge requests!81New stable release,!43Merge dev to master,!41UI March
...@@ -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