mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-01 09:09:34 -06:00
24 lines
636 B
YAML
24 lines
636 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "postgresql"
|
|
queries: "sql/queries"
|
|
schema: "internal/db/migrations/data"
|
|
gen:
|
|
go:
|
|
package: "db"
|
|
out: "internal/db"
|
|
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" |