20 lines
484 B
YAML
20 lines
484 B
YAML
version: "2"
|
|
sql:
|
|
- schema: "db/migration"
|
|
queries: "db/query"
|
|
engine: "postgresql"
|
|
gen:
|
|
go:
|
|
package: "db"
|
|
out: "db/sqlc"
|
|
sql_package: "lib/pq"
|
|
emit_json_tags: true
|
|
emit_interface: false
|
|
emit_empty_slices: true
|
|
emit_exact_table_names: false
|
|
overrides:
|
|
- db_type: "timestamptz"
|
|
go_type: "time.Time"
|
|
- db_type: "uuid"
|
|
go_type: "github.com/google/uuid.UUID"
|