dbmate 2.15.0 → 2.17.0
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 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -191,6 +191,7 @@ Dropping: myapp_test
|
|
|
191
191
|
$ dbmate -e TEST_DATABASE_URL --no-dump-schema up
|
|
192
192
|
Creating: myapp_test
|
|
193
193
|
Applying: 20151127184807_create_users_table.sql
|
|
194
|
+
Applied: 20151127184807_create_users_table.sql in 123µs
|
|
194
195
|
```
|
|
195
196
|
|
|
196
197
|
Alternatively, you can specify the url directly on the command line:
|
|
@@ -343,6 +344,7 @@ Run `dbmate up` to run any pending migrations.
|
|
|
343
344
|
$ dbmate up
|
|
344
345
|
Creating: myapp_development
|
|
345
346
|
Applying: 20151127184807_create_users_table.sql
|
|
347
|
+
Applied: 20151127184807_create_users_table.sql in 123µs
|
|
346
348
|
Writing: ./db/schema.sql
|
|
347
349
|
```
|
|
348
350
|
|
|
@@ -371,6 +373,7 @@ Run `dbmate rollback` to roll back the most recent migration:
|
|
|
371
373
|
```sh
|
|
372
374
|
$ dbmate rollback
|
|
373
375
|
Rolling back: 20151127184807_create_users_table.sql
|
|
376
|
+
Rolled back: 20151127184807_create_users_table.sql in 123µs
|
|
374
377
|
Writing: ./db/schema.sql
|
|
375
378
|
```
|
|
376
379
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dbmate",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "A lightweight, framework-agnostic database migration tool",
|
|
5
5
|
"repository": "https://github.com/amacneil/dbmate",
|
|
6
6
|
"homepage": "https://github.com/amacneil/dbmate#readme",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"build": "tsc --build"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@dbmate/linux-ia32": "2.
|
|
28
|
-
"@dbmate/linux-x64": "2.
|
|
29
|
-
"@dbmate/linux-arm": "2.
|
|
30
|
-
"@dbmate/linux-arm64": "2.
|
|
31
|
-
"@dbmate/darwin-x64": "2.
|
|
32
|
-
"@dbmate/darwin-arm64": "2.
|
|
33
|
-
"@dbmate/win32-x64": "2.
|
|
27
|
+
"@dbmate/linux-ia32": "2.17.0",
|
|
28
|
+
"@dbmate/linux-x64": "2.17.0",
|
|
29
|
+
"@dbmate/linux-arm": "2.17.0",
|
|
30
|
+
"@dbmate/linux-arm64": "2.17.0",
|
|
31
|
+
"@dbmate/darwin-x64": "2.17.0",
|
|
32
|
+
"@dbmate/darwin-arm64": "2.17.0",
|
|
33
|
+
"@dbmate/win32-x64": "2.17.0"
|
|
34
34
|
}
|
|
35
35
|
}
|