From b3e6bcbafd84041e2c99560ba0312d2156db51c0 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 10 Aug 2018 16:13:48 +0200 Subject: [PATCH] package.json: call for dbmigrate script. run "npm run phinx" instead of phinx directly. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f7f1ae..9677362 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ }, "scripts": { "phinx": "vendor/bin/phinx", - "dbmigrate": "vendor/bin/phinx migrate -e main", + "dbmigrate": "npm run phinx migrate -e main", "build": "gulp build-assets", "test": "echo \"Error: no test specified\" && exit 1" },