-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpg-diff-config.json
More file actions
55 lines (55 loc) · 1.09 KB
/
pg-diff-config.json
File metadata and controls
55 lines (55 loc) · 1.09 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
{
"development": {
"sourceClient": {
"host": "localhost",
"port": 5432,
"database": "pg_diff_test1",
"user": "postgres",
"password": "postgres",
"applicationName": "pg-diff-cli",
"ssl": false
},
"targetClient": {
"host": "localhost",
"port": 5432,
"database": "pg_diff_test2",
"user": "postgres",
"password": "postgres",
"applicationName": "pg-diff-cli",
"ssl": false
},
"compareOptions": {
"author": "@MSO - Michael Sogos",
"outputDirectory": "db_migration",
"getAuthorFromGit": true,
"schemaCompare": {
"namespaces": [
"public",
"schema_one"
],
"dropMissingTable": true,
"dropMissingView": true,
"dropMissingFunction": true,
"dropMissingAggregate": true,
"roles": []
},
"dataCompare": {
"enable": false,
"tables": [
{
"tableName": "test_generic",
"tableSchema": "public",
"tableKeyFields": [
"id"
]
}
]
}
},
"migrationOptions": {
"patchesDirectory": "db_migration",
"historyTableName": "migrations",
"historyTableSchema": "public"
}
}
}