Packages

Small Postgres + SQLite library for Gleam. Query builder for 80% of CRUD, typed raw SQL for the rest.

Current section

Files

Jump to
gloo include gloo@migration_Column.hrl
Raw

include/gloo@migration_Column.hrl

-record(column, {
name :: binary(),
type_sql :: binary(),
nullable :: boolean(),
default :: gleam@option:option(binary()),
primary_key :: boolean(),
unique :: boolean()
}).