UNPKG

@grouparoo/core

Version:
20 lines (17 loc) 411 B
import Sequelize from "sequelize"; export default { up: async (queryInterface: Sequelize.QueryInterface) => { await queryInterface.renameColumn( "properties", "directlyMapped", "isPrimaryKey" ); }, down: async (queryInterface: Sequelize.QueryInterface) => { await queryInterface.renameColumn( "properties", "isPrimaryKey", "directlyMapped" ); }, };