brainz-aggregator/migrations/0001-migrations-table.js

9 lines
235 B
JavaScript
Raw Permalink Normal View History

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;");
}
}