forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.json
More file actions
73 lines (73 loc) · 2.04 KB
/
sqlc.json
File metadata and controls
73 lines (73 loc) · 2.04 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
{
"version": "1",
"packages": [
{
"path": "authors",
"schema": "authors/schema.sql",
"queries": "authors/query.sql",
"engine": "postgresql"
},
{
"path": "ondeck",
"schema": "ondeck/schema",
"queries": "ondeck/query",
"engine": "postgresql",
"emit_json_tags": true,
"emit_prepared_queries": true,
"emit_interface": true
},
{
"path": "jets",
"schema": "jets/schema.sql",
"queries": "jets/query-building.sql",
"engine": "postgresql"
},
{
"name": "booktest",
"path": "booktest/postgresql",
"schema": "booktest/postgresql/schema.sql",
"queries": "booktest/postgresql/query.sql",
"engine": "postgresql"
},
{
"name": "booktest",
"path": "booktest/mysql",
"schema": "booktest/mysql/schema.sql",
"queries": "booktest/mysql/query.sql",
"engine": "mysql"
},
{
"name": "com.example.authors",
"path": "kotlin/src/main/kotlin/com/example/authors",
"schema": "kotlin/src/main/resources/authors/schema.sql",
"queries": "kotlin/src/main/resources/authors/query.sql",
"engine": "postgresql",
"language": "kotlin"
},
{
"name": "com.example.ondeck",
"path": "kotlin/src/main/kotlin/com/example/ondeck",
"schema": "ondeck/schema",
"queries": "ondeck/query",
"engine": "postgresql",
"emit_interface": true,
"language": "kotlin"
},
{
"name": "com.example.jets",
"path": "kotlin/src/main/kotlin/com/example/jets",
"schema": "jets/schema.sql",
"queries": "jets/query-building.sql",
"engine": "postgresql",
"language": "kotlin"
},
{
"name": "com.example.booktest.postgresql",
"path": "kotlin/src/main/kotlin/com/example/booktest/postgresql",
"schema": "kotlin/src/main/resources/booktest/postgresql/schema.sql",
"queries": "kotlin/src/main/resources/booktest/postgresql/query.sql",
"engine": "postgresql",
"language": "kotlin"
}
]
}