Packages

SQL query builder core for Gleam

Current section

Files

Jump to
galchemy src galchemy@ast@schema.erl
Raw

src/galchemy@ast@schema.erl

-module(galchemy@ast@schema).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src\\galchemy\\ast\\schema.gleam").
-export_type([table/0, column_meta/0, column/1]).
-type table() :: {table,
gleam@option:option(binary()),
binary(),
gleam@option:option(binary())}.
-type column_meta() :: {column_meta, table(), binary()}.
-type column(GZJ) :: {column, column_meta()} | {gleam_phantom, GZJ}.