Skip to content

Commit

Permalink
fix datatype to match the database
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan committed Dec 22, 2022
1 parent 64888b1 commit d7c2cdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions daiquiri/tap/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
'name': 'principal',
'description': 'Designates if the column is considered a core part of the service',
'order': 11,
'datatype': 'unsignedByte',
'datatype': 'boolean',
'arraysize': None,
'std': True,
'access_level': 'PUBLIC',
Expand All @@ -263,7 +263,7 @@
'name': 'indexed',
'description': 'Designates if the column is indexed',
'order': 12,
'datatype': 'unsignedByte',
'datatype': 'boolean',
'arraysize': None,
'std': True,
'access_level': 'PUBLIC',
Expand All @@ -273,7 +273,7 @@
'name': 'std',
'description': 'Designates if the column is defined by some standard',
'order': 13,
'datatype': 'unsignedByte',
'datatype': 'boolean',
'arraysize': None,
'std': True,
'access_level': 'PUBLIC',
Expand Down

0 comments on commit d7c2cdb

Please sign in to comment.