@grouparoo/core
Version:
The Grouparoo Core
49 lines (41 loc) • 972 B
text/typescript
import Sequelize from "sequelize";
export default {
up: async (
queryInterface: Sequelize.QueryInterface,
DataTypes: typeof Sequelize
) => {
await queryInterface.createTable("exportImports", {
guid: {
type: DataTypes.STRING(40),
primaryKey: true,
},
createdAt: {
type: DataTypes.DATE,
allowNull: false,
},
updatedAt: {
type: DataTypes.DATE,
allowNull: false,
},
importGuid: {
type: DataTypes.STRING(40),
allowNull: false,
},
exportGuid: {
type: DataTypes.STRING(40),
allowNull: false,
},
});
await queryInterface.addIndex(
"exportImports",
["importGuid", "exportGuid"],
{
unique: true,
fields: ["importGuid", "exportGuid"],
}
);
},
down: async (queryInterface: Sequelize.QueryInterface) => {
await queryInterface.dropTable("exportImports");
},
};