stepwise-migrations 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,13 +5,13 @@
5
5
  A tool for managing Raw SQL migrations in a Postgres database.
6
6
  Loosely based on flyway.
7
7
 
8
- ## Notes
8
+ ## Instructions
9
9
 
10
10
  Name up migration files as `.sql` and down migration files with the same name but suffixed with `.down.sql`.
11
11
  e.g. `v1_users.sql` and `v1_users.down.sql`.
12
- Down migrations are optional.
12
+ NOTE: Down migrations are optional.
13
13
 
14
- They are first sorted in ascending order based on filename.
14
+ Up migrations are first sorted in ascending order based on filename.
15
15
  No subdirectories are read below the migration directory.
16
16
 
17
17
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stepwise-migrations",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {