UNPKG

@coko/server

Version:

Reusable server for use by Coko's projects

17 lines 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.up = up; exports.down = down; const TABLE_NAME = 'coko_server_meta'; const COLUMN_NAME = 'pg_boss_schema'; async function up(db) { await db.schema.alterTable(TABLE_NAME, t => { t.string(COLUMN_NAME); }); } async function down(db) { await db.schema.alterTable(TABLE_NAME, t => { t.dropColumn(COLUMN_NAME); }); } //# sourceMappingURL=1768312501-meta-pg-boss.js.map