-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlc.yaml
29 lines (24 loc) · 865 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
version: "2"
sql:
- engine: "mysql"
queries: "./UserService/app/db/mysql/query/"
schema: "./UserService/app/db/mysql/migration/"
gen:
go:
package: "db"
out: "./UserService/app/db/mysql/sqlc"
emit_json_tags: true
emit_prepared_queries: false
emit_interface: true
emit_exact_table_names: false
- engine: "mysql"
queries: "./StudyService/app/db/mysql/query/"
schema: "./StudyService/app/db/mysql/migration/"
gen:
go:
package: "db"
out: "./StudyService/app/db/mysql/sqlc"
emit_json_tags: true
emit_prepared_queries: false
emit_interface: true
emit_exact_table_names: false