Skip to content

Commit b72dd36

Browse files
author
hirsch88
committed
Add db.drop script
1 parent 1ae3b08 commit b72dd36

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,9 @@ All script are defined in the package.json file, but the most important ones are
143143
### Database Migration
144144

145145
- Run `./node_modules/.bin/typeorm create -n <migration-file-name>` to create a new migration file.
146-
- To migrate your database run `npm start migrate`.
147-
- To revert your latest migration run `npm start migrate.revert`.
146+
- To migrate your database run `npm start db.migrate`.
147+
- To revert your latest migration run `npm start db.revert`.
148+
- Drops the complete database schema `npm start db.drop`.
148149

149150
### Database Seeding
150151

package-scripts.js

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ module.exports = {
6969
},
7070
config: {
7171
script: runFast('./src/lib/ormconfig.ts'),
72+
},
73+
drop: {
74+
script: runFast('./node_modules/.bin/typeorm schema:drop')
7275
}
7376
},
7477
/**

0 commit comments

Comments
 (0)