-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.yaml
More file actions
41 lines (38 loc) · 1.01 KB
/
Copy pathsqlc.yaml
File metadata and controls
41 lines (38 loc) · 1.01 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
version: "2"
sql:
- engine: "sqlite"
queries: "internal/db/queries/workspace.sql"
schema: "internal/db/migrations"
gen:
go:
package: "workspace"
out: "internal/models/workspace"
emit_interface: true
omit_unused_structs: true
- engine: "sqlite"
queries: "internal/db/queries/document.sql"
schema: "internal/db/migrations"
gen:
go:
package: "document"
out: "internal/models/document"
emit_interface: true
omit_unused_structs: true
- engine: "sqlite"
queries: "internal/db/queries/thread.sql"
schema: "internal/db/migrations"
gen:
go:
package: "thread"
out: "internal/models/thread"
emit_interface: true
omit_unused_structs: true
- engine: "sqlite"
queries: "internal/db/queries/message.sql"
schema: "internal/db/migrations"
gen:
go:
package: "message"
out: "internal/models/message"
emit_interface: true
omit_unused_structs: true