dbschema 0.1.1

Define database schema's as HCL files, and generate idempotent SQL migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
function "now_utc" {
  schema   = "public"
  language = "sql"
  returns  = "timestamptz"
  replace  = true
  body     = "SELECT now()"
}

test "now_utc" {
  assert = "SELECT now_utc() IS NOT NULL"
}