stepwise-migrations 1.0.10 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Stepwise Migrations
|
2
2
|
|
3
|
-
[](https://badge.fury.io/js/stepwise-migrations)
|
3
|
+
[](https://badge.fury.io/js/stepwise-migrations)
|
4
4
|
|
5
5
|
A tool for managing Raw SQL migrations in a Postgres database.
|
6
6
|
Loosely based on flyway.
|
@@ -242,8 +242,8 @@ Command:
|
|
242
242
|
|
243
243
|
```bash
|
244
244
|
npx stepwise-migrations get-script --filename v2_auth.sql \
|
245
|
-
--connection=postgresql://postgres:postgres@127.0.0.1:5432/
|
246
|
-
--schema=
|
245
|
+
--connection=postgresql://postgres:postgres@127.0.0.1:5432/mydb \
|
246
|
+
--schema=myschema \
|
247
247
|
--path=./db/migration/
|
248
248
|
```
|
249
249
|
|