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.
- package/README.md +3 -3
- 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
|
-
##
|
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
|
-
|
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
|