sealed-migrations 0.1.1 → 0.1.2
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 +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,8 @@ await runner.seal('add_timezone')
|
|
|
58
58
|
await runner.runCli(process.argv.slice(2))
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
Setting up in a new project? [SETUP.md](./SETUP.md) is the full first-time recipe (wrapper, scaffolder, baseline, branch guard, CI, deploy). Already have a vendored migration script? [MIGRATING.md](./MIGRATING.md) is a behaviour-preserving swap.
|
|
62
|
+
|
|
61
63
|
## Migration files
|
|
62
64
|
|
|
63
65
|
```text
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealed-migrations",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"packageManager": "pnpm@10.7.0",
|
|
6
6
|
"description": "Checksum-tracked SQL migrations for MySQL/MariaDB with a dev-first lifecycle: migrations start unnumbered as dev_<slug>/ and are sealed to NNN_<slug>/ right before merge, so parallel branches never collide on numbers.",
|
|
7
7
|
"author": "Stanislav Janů",
|