Rope
Rope copied to clipboard
Typed columns
Instead of returning [String:Any?]
let's return [String:PostgresType]
:
enum PostgresType {
case text(String?),
case int(Int?),
case other(Any?)
}
Nil in the associated value means null.