-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.yaml
More file actions
29 lines (29 loc) · 827 Bytes
/
sqlc.yaml
File metadata and controls
29 lines (29 loc) · 827 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
29
version: "2"
sql:
- queries: "./db/query"
schema: "./db/migration"
engine: "postgresql"
gen:
go:
package: "db"
out: "./db/sqlc"
emit_interface: true
emit_json_tags: true
json_tags_id_uppercase: false
emit_db_tags: false
emit_prepared_queries: false
emit_exact_table_names: false
emit_empty_slices: true
emit_result_struct_pointers: false
emit_params_struct_pointers: false
emit_methods_with_db_argument: false
json_tags_case_style: none
output_batch_file_name: batch.go
output_db_file_name: db.go
output_models_file_name: models.go
output_querier_file_name: querier.go
query_parameter_limit: 1
omit_unused_structs: false
plugins: []
rules: []
options: {}