fix(#14): Implement database migrations system with baseline migration
Some checks are pending
Docker Test / test (push) Waiting to run

This commit is contained in:
OpenClaw 2026-03-06 23:37:39 +00:00
parent 2f2ea4d483
commit 3916dd42bf
5 changed files with 248 additions and 23 deletions

View file

@ -10,6 +10,7 @@
"dev": "node --watch src/server.js",
"db:init": "node src/db/init.js",
"db:seed": "node src/db/seed.js",
"db:migrate": "node migrations/runner.js --run",
"test:smoke": "node scripts/smoke-test.mjs",
"test:integration": "node scripts/integration-test.mjs"
},