UNPKG

@grouparoo/core

Version:
14 lines (13 loc) 420 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { up: async (queryInterface, DataTypes) => { await queryInterface.addColumn("runs", "groupHighWaterMark", { type: DataTypes.BIGINT, allowNull: true, }); }, down: async (queryInterface) => { await queryInterface.removeColumn("runs", "groupHighWaterMark"); }, };