tulip/sqlc.yaml

24 lines
847 B
YAML
Raw Normal View History

version: "2"
sql:
- engine: sqlite
queries: database/queries
schema: database/migrations
gen:
go:
package: "database"
out: "database"
emit_json_tags: true
overrides:
2024-03-11 12:39:52 +00:00
- column: "users.password"
go_type: "github.com/1f349/tulip/password.HashString"
2024-03-12 21:42:52 +00:00
- column: "users.birthdate"
go_type: "github.com/hardfinhq/go-date.NullDate"
2024-03-11 12:39:52 +00:00
- column: "users.role"
go_type: "github.com/1f349/tulip/database/types.UserRole"
- column: "users.pronouns"
go_type: "github.com/1f349/tulip/database/types.UserPronoun"
- column: "users.zoneinfo"
go_type: "github.com/1f349/tulip/database/types.UserZone"
- column: "users.locale"
go_type: "github.com/1f349/tulip/database/types.UserLocale"