Skip to content

Commit

Permalink
fix: knex commands [api]
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkl committed Apr 11, 2022
1 parent 2c95062 commit 7352865
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"start": "node src/index.js",
"start:dev": "nodemon src/index.js",
"debug": "node inspect src/index.js",
"db:migration:create": "knex migrate:make --knexfile ./config/knexfile.js",
"db:migrate": "knex --knexfile ./config/knexfile.js migrate:latest",
"db:seed:create": "knex --knexfile ./config/knexfile.js seed:make",
"db:seed": "knex --knexfile ./config/knexfile.js seed:run",
"db:migration:create": "knex migrate:make --client pg --knexfile ./config/knexfile.js",
"db:migrate": "knex migrate:latest --knexfile ./config/knexfile.js",
"db:seed:create": "knex seed:make --client pg --knexfile ./config/knexfile.js",
"db:seed": "knex seed:run --knexfile ./config/knexfile.js",
"setup": "npm run db:migrate && npm run db:seed"
},
"repository": {
Expand Down

0 comments on commit 7352865

Please sign in to comment.