out-of-your-element/scripts/check-migrate.js

15 lines
414 B
JavaScript
Executable file

#!/usr/bin/env node
// @ts-check
// Trigger the database migration flow and exit after committing.
// You can use this to run migrations locally and check the result using sqlitebrowser.
const sqlite = require("better-sqlite3")
const passthrough = require("../src/passthrough")
const db = new sqlite("ooye.db")
const migrate = require("../src/db/migrate")
Object.assign(passthrough, {db})
migrate.migrate(db)