export ColName constants

This commit is contained in:
Michael Bradley, Jr 2022-07-13 13:50:49 -05:00
parent aee7f7b57c
commit 0df3e2424d
No known key found for this signature in database
GPG Key ID: D0307DBCF21A9A58

View File

@ -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"