Yimaru-BackEnd/sqlc.yaml
2025-03-26 23:50:19 +03:00

19 lines
473 B
YAML

version: "2"
sql:
- schema: "./db/migrations/"
queries: "./db/query/"
engine: "postgresql"
gen:
go:
package: "dbgen"
sql_package: "pgx/v5"
out: "./gen/db"
emit_exported_queries: true
emit_json_tags: false
overrides:
- db_type: "uuid"
go_type: "github.com/google/uuid.UUID"
- db_type: "uuid"
go_type: "github.com/google/uuid.NullUUID"
nullable: true