@kysera/migrations 0.6.0 → 0.7.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 +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @kysera/migrations
|
|
2
2
|
|
|
3
|
-
> Lightweight, type-safe database migration management for Kysera
|
|
3
|
+
> Lightweight, type-safe database migration management for Kysera with dry-run support, flexible rollback capabilities, and plugin system.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@kysera/migrations)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kysera/migrations",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Database migration management for
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "Database migration management for Kysely with dry-run support and flexible rollback capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"keywords": [
|
|
19
19
|
"kysely",
|
|
20
|
-
"
|
|
20
|
+
"data-access",
|
|
21
21
|
"migrations",
|
|
22
22
|
"database",
|
|
23
23
|
"typescript",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "Kysera Team",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@kysera/core": "0.
|
|
29
|
+
"@kysera/core": "0.7.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/better-sqlite3": "^7.6.13",
|