1 Commits
0.3.3 ... 0.3.4

Author SHA1 Message Date
279d9aa7fd Expose a number of useful utility methods and macros. 2021-08-02 05:54:56 -05:00
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "0.3.3"
version = "0.3.4"
author = "Jonathan Bernard"
description = "Lightweight Postgres ORM for Nim."
license = "GPL-3.0"

View File

@ -3,6 +3,14 @@ import db_postgres, macros, options, sequtils, strutils, uuids
from unicode import capitalize
import ./fiber_orm/util
export
util.columnNamesForModel,
util.dbFormat,
util.dbNameToIdent,
util.identNameToDb,
util.modelName,
util.rowToModel,
util.tableName
type NotFoundError* = object of CatchableError