pgsync 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/config.yml +5 -1
- data/lib/pgsync/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b754f24353de37a0b8b8800d9ea0ac010c3dcd16234a6554abab564c1fb6b839
|
|
4
|
+
data.tar.gz: 7ec8238e286e7c145934be5309e3a67ab3f7a9b0267840e046d8b7e6b0c703bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62ee273ca358509668ce44a7b9b599e156c31ef47a457d9ff857a1384c97e3e73379f84b8d56f6347b612249725c111b62671be7ac0703d6a96a89e6a920c33f
|
|
7
|
+
data.tar.gz: 1e55d84d7a142ae3b1b79e48cbc55171e2f78265a478428427a7e8f38712d7a26f9801ff958f4e68011c758f881b365656128e8888ec9f81efac1a087e1cb03c
|
data/CHANGELOG.md
CHANGED
data/config.yml
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# source database URL
|
|
2
2
|
# database URLs take the format of:
|
|
3
3
|
# postgres://user:password@host:port/dbname
|
|
4
|
+
#
|
|
4
5
|
# we recommend a command which outputs a database URL
|
|
5
6
|
# so sensitive information is not included in this file
|
|
6
|
-
|
|
7
|
+
#
|
|
8
|
+
# we *highly recommend* you use sslmode=verify-full when possible
|
|
9
|
+
# see https://ankane.org/postgres-sslmode-explained for more info
|
|
10
|
+
from: $(some_command)?sslmode=require
|
|
7
11
|
|
|
8
12
|
# destination database URL
|
|
9
13
|
to: postgres://localhost:5432/myapp_development
|
data/lib/pgsync/version.rb
CHANGED