mirror of
https://codeberg.org/shroff/phylum.git
synced 2025-12-31 08:20:09 -06:00
21 lines
530 B
YAML
21 lines
530 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "postgresql"
|
|
queries: "sql/queries"
|
|
schema: "sql/migrations"
|
|
gen:
|
|
go:
|
|
package: "phylumsql"
|
|
out: "internal/phylumsql"
|
|
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 |