-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.yaml
More file actions
28 lines (28 loc) · 906 Bytes
/
Copy pathsqlc.yaml
File metadata and controls
28 lines (28 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: "2"
sql:
- engine: "postgresql"
schema:
- "internal/platform/postgres/migrations"
queries:
- "internal/platform/postgres/sql"
gen:
go:
package: "sqlcgen"
out: "internal/platform/postgres/sqlc"
sql_package: "pgx/v5"
emit_pointers_for_null_types: true
overrides:
- column: "users.created_at"
go_type: "time.Time"
- column: "users.updated_at"
go_type: "time.Time"
- column: "project_types.created_at"
go_type: "time.Time"
- column: "project_types.updated_at"
go_type: "time.Time"
- column: "external_applications.created_at"
go_type: "time.Time"
- column: "external_applications.updated_at"
go_type: "time.Time"
- column: "schema_migrations.applied_at"
go_type: "time.Time"