Files
phylum/server/sqlc.yml
2024-07-22 16:13:51 -07:00

24 lines
635 B
YAML

version: "2"
sql:
- engine: "postgresql"
queries: "sql/queries"
schema: "internal/migrations/data"
gen:
go:
package: "sql"
out: "internal/sql"
sql_package: "pgx/v5"
overrides:
- db_type: "uuid"
go_type:
import: "github.com/google/uuid"
type: "UUID"
- db_type: "uuid"
nullable: true
go_type:
import: "github.com/google/uuid"
type: "UUID"
pointer: true
- column: "storage_backends.params"
go_type:
type: "map[string]string"