Closed
Description
First noted in #16. The value
column in db.Setting
is set as a value = Column(JSON())
. However, this fails on directly storing integer/float values (actually its seems to serialize them correctly, but then fail on deserialize). Maybe store as {"value": value}
.