-
Notifications
You must be signed in to change notification settings - Fork 0
/
ormless.config.json
41 lines (41 loc) · 966 Bytes
/
ormless.config.json
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
{
"database": {
"information_schema": {
"tables": {
"include": ["tables", "table_constraints", "key_column_usage", "columns", "constraint_column_usage"]
}
},
"pg_catalog": {
"tables": {
"include": ["pg_constraint", "pg_enum", "pg_type", "pg_namespace"]
}
}
},
"searchPaths": ["information_schema", "pg_catalog"],
"connection": {
"database": "ormless",
"host": "localhost",
"user": "michael",
"dialect": "postgres"
},
"generate": {
"postgres.interface": {
"root": "Postgres",
"folder": "src/introspection/explorer"
}
},
"types": {
"regproc": "string",
"pg_node_tree": "string",
"aclitem": "string",
"oidvector": "string",
"pg_lsn": "string",
"xid": "string",
"int2vector": "string",
"anyarray": "string",
"regtype": "string",
"pg_ndistinct": "string",
"pg_dependencies": "string",
"pg_mcv_list": "string"
}
}