Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

upgrade postgrator to support cross platform checksums #177

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion migrate-psql-db.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ module.exports = function migrate (cb) {
host: config['postgresql-store'].host,
database: config['postgresql-store'].name,
username: config['postgresql-store'].username,
password: config['postgresql-store'].password
password: config['postgresql-store'].password,
newline: 'LF'
});

postgrator.migrate('max', function (err, migrations) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"optimist": "0.6.1",
"pg": "4.4.0",
"pg-large-object": "0.0.1",
"postgrator": "2.2.0",
"postgrator": "2.5.0",
"request": "2.58.0",
"seneca": "0.7.2",
"seneca-auth": "0.2.10",
Expand Down