-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsqlc.yaml
31 lines (31 loc) · 863 Bytes
/
sqlc.yaml
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
29
30
31
version: "1"
packages:
- name: "sqlc"
path: "internal/db"
queries: "./internal/db/"
schema: "./db/migrations/"
engine: "postgresql"
emit_prepared_queries: true
emit_interface: false
emit_exact_table_names: false
emit_empty_slices: false
emit_json_tags: false
overrides:
- column: "sending_pool_emails.fields"
go_type:
type: "CustomFields"
- column: "sending_pool_emails.status"
go_type:
type: "SendingPoolStatus"
- column: "messages.attachments"
go_type:
type: "Attachments"
- column: "stats.type"
go_type:
type: "StatsType"
- column: "stats.data"
go_type:
import: "github.com/ludusrusso/kannon/proto/kannon/stats/types"
type: "StatsData"
package: pbtypes
pointer: true