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
82 lines (82 loc) · 2.31 KB
/
sqlc.json
File metadata and controls
82 lines (82 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
{
"version": "2",
"sql": [
{
"schema": "src/main/resources/authors/postgresql/schema.sql",
"queries": "src/main/resources/authors/postgresql/query.sql",
"engine": "postgresql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/authors/postgresql",
"package": "com.example.authors.postgresql"
}
}
},
{
"schema": "src/main/resources/ondeck/postgresql/schema",
"queries": "src/main/resources/ondeck/postgresql/query",
"engine": "postgresql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/ondeck/postgresql",
"package": "com.example.ondeck.postgresql"
}
}
},
{
"schema": "src/main/resources/jets/schema.sql",
"queries": "src/main/resources/jets/query-building.sql",
"engine": "postgresql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/jets",
"package": "com.example.jets"
}
}
},
{
"schema": "src/main/resources/booktest/postgresql/schema.sql",
"queries": "src/main/resources/booktest/postgresql/query.sql",
"engine": "postgresql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/booktest/postgresql",
"package": "com.example.booktest.postgresql"
}
}
},
{
"schema": "src/main/resources/authors/mysql/schema.sql",
"queries": "src/main/resources/authors/mysql/query.sql",
"engine": "mysql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/authors/mysql",
"package": "com.example.authors.mysql"
}
}
},
{
"schema": "src/main/resources/booktest/mysql/schema.sql",
"queries": "src/main/resources/booktest/mysql/query.sql",
"engine": "mysql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/booktest/mysql",
"package": "com.example.booktest.mysql"
}
}
},
{
"schema": "src/main/resources/ondeck/mysql/schema",
"queries": "src/main/resources/ondeck/mysql/query",
"engine": "mysql",
"gen": {
"kotlin": {
"out": "src/main/kotlin/com/example/ondeck/mysql",
"package": "com.example.ondeck.mysql"
}
}
}
]
}