module.exports = { up: async (target) => { target.prepare("CREATE TABLE brainz_migrations (name TEXT NOT NULL);").run(); }, down: async (target) => { target.prepare("DROP TABLE brainz_migrations;"); } }