-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathsqlc.yaml
More file actions
48 lines (48 loc) · 1.13 KB
/
sqlc.yaml
File metadata and controls
48 lines (48 loc) · 1.13 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
version: '2'
plugins:
- name: py
wasm:
url: https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.2.0.wasm
sha256: a6c5d174c407007c3717eea36ff0882744346e6ba991f92f71d6ab2895204c0e
sql:
- schema: "src/authors/schema.sql"
queries: "src/authors/query.sql"
engine: postgresql
codegen:
- out: src/authors
plugin: py
options:
package: authors
emit_sync_querier: true
emit_async_querier: true
query_parameter_limit: 5
- schema: "src/booktest/schema.sql"
queries: "src/booktest/query.sql"
engine: postgresql
codegen:
- out: src/booktest
plugin: py
options:
package: booktest
emit_async_querier: true
query_parameter_limit: 5
- schema: "src/jets/schema.sql"
queries: "src/jets/query-building.sql"
engine: postgresql
codegen:
- out: src/jets
plugin: py
options:
package: jets
emit_async_querier: true
query_parameter_limit: 5
- schema: "src/ondeck/schema"
queries: "src/ondeck/query"
engine: postgresql
codegen:
- out: src/ondeck
plugin: py
options:
package: ondeck
emit_async_querier: true
query_parameter_limit: 5