sql
sql copied to clipboard
Allow to use enumerable types other than Array
Use-case – unknown structure JSON:
type payload : Hash(String, String), converter: PG::JSONB(Hash(String, String))
Or unique enumerables as set:
type tags : Set(String), converter: PG::Set(String)