-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.yaml
More file actions
executable file
·85 lines (85 loc) · 2.79 KB
/
Copy pathsqlc.yaml
File metadata and controls
executable file
·85 lines (85 loc) · 2.79 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: "2"
sql:
- engine: "postgresql"
queries: "sql/queries/"
schema: "sql/schema/migrations/"
gen:
go:
package: "db"
out: "pkg/db"
sql_package: "pgx/v5"
emit_interface: true
overrides:
- db_type: "geometry"
go_type: "github.com/twpayne/go-geom.Point"
- column: "sign.vwhugofeature.highway_names"
go_type:
slice: true
type: string
- column: "sign.vwhugostate.highway_names"
go_type:
slice: true
type: string
- column: "sign.vwhugostate.highways"
go_type:
slice: true
type: string
- column: "sign.vwhugostate.categories"
go_type:
slice: true
type: string
- column: "sign.vwhugostate.counties"
go_type:
slice: true
import: "highway-sign-portal-builder/pkg/types"
type: AdminArea
- column: "sign.vwhugostate.places"
go_type:
slice: true
import: "highway-sign-portal-builder/pkg/types"
type: AdminArea
- column: "sign.vwhugocountry.highway_types"
go_type:
slice: true
import: "highway-sign-portal-builder/pkg/types"
type: AdminArea
- column: "sign.vwhugocountry.states"
go_type:
slice: true
import: "highway-sign-portal-builder/pkg/types"
type: AdminArea
- column: "sign.vwhugohighwaysign.place_slug"
go_type:
type: string
pointer: true
- column: "sign.vwhugohighwaysign.county_slug"
go_type:
type: string
pointer: true
- column: "sign.vwhugohighwaysign.flickrid"
go_type:
type: string
pointer: true
- column: "sign.vwhugohighwaysign.imageid"
go_type:
import: "highway-sign-portal-builder/pkg/types"
type: ImageID
- column: "sign.vwhugohighwaytype.imageid"
go_type:
import: "highway-sign-portal-builder/pkg/types"
type: ImageID
pointer: true
- column: "sign.vwhugocountry.featured"
go_type:
import: "highway-sign-portal-builder/pkg/types"
type: ImageID
pointer: true
- column: "sign.vwhugostate.featured"
go_type:
import: "highway-sign-portal-builder/pkg/types"
type: ImageID
pointer: true
- column: "sign.vwhugofeaturelink.highway_name"
go_type:
type: string
pointer: true