diff --git a/datastore/sqlite_datastore.nim b/datastore/sqlite_datastore.nim index dc1e32d..5116292 100644 --- a/datastore/sqlite_datastore.nim +++ b/datastore/sqlite_datastore.nim @@ -48,9 +48,9 @@ const dbExt* = ".sqlite3" tableName* = "Store" - idColName = "id" - dataColName = "data" - timestampColName = "timestamp" + idColName* = "id" + dataColName* = "data" + timestampColName* = "timestamp" idColType = "TEXT" dataColType = "BLOB"