Skip to content

Commit 54fe20e

Browse files
committed
fix: column(string) unknown datatype
1 parent 9a0407d commit 54fe20e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

hydrus/data/db_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ def get_attr_dict(self):
110110
datatype = supported_property['range'].split('#')[1]
111111
if datatype in datatype_keys:
112112
attr_dict[title] = Column(datatype_keys[datatype])
113+
else:
114+
attr_dict[title] = Column(String)
113115
else:
114116
attr_dict[title] = Column(String)
115117

0 commit comments

Comments
 (0)