ooye-nix-patches/scripts/check-migrate.js

17 lines
455 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 config = require("../config")
const passthrough = require("../passthrough")
const db = new sqlite("db/ooye.db")
const migrate = require("../db/migrate")
Object.assign(passthrough, {config, db })
migrate.migrate(db)