sql-fun 0.1.0

SQL query/statement execution code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

{{#each this}}
-- {{table}} table
CREATE TABLE "{{schema}}"."{{table}}" (
    {{#each columns}}
    "{{column}}" {{{data_type}}}{{#if not_null }} not null{{/if~}}
    {{#if default_expr}}default({{default_expr}}){{/if~}}
    {{~#unless @last}},{{/unless}}
    {{/each}}
);

{{/each}}