dbschema 0.1.0

Define database schema's as HCL files, and generate idempotent SQL migrations
Documentation
# Schema

Defines a database schema. Optional attributes control existence checks and ownership.

```hcl
schema "analytics" {
  if_not_exists = true
  authorization = "app_user"
}
```

## Attributes
- `name` (label): schema name.
- `if_not_exists` (bool): emit `CREATE SCHEMA IF NOT EXISTS` when true. Defaults to `false`.
- `authorization` (string, optional): owner of the schema.
- `comment` (string, optional): documentation comment.

## Examples

```hcl
schema "analytics" {}

schema "app_private" {
  if_not_exists = true
  authorization = "app_user"
}
```