@grouparoo/core
Version:
The Grouparoo Core
43 lines (42 loc) • 1.37 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
up: async (queryInterface, DataTypes) => {
await queryInterface.createTable("profileProperties", {
guid: {
type: DataTypes.STRING(40),
primaryKey: true,
},
createdAt: {
type: DataTypes.DATE,
allowNull: false,
},
updatedAt: {
type: DataTypes.DATE,
allowNull: false,
},
profileGuid: {
type: DataTypes.STRING(40),
allowNull: false,
},
rawValue: {
type: DataTypes.TEXT,
allowNull: true,
},
profilePropertyRuleGuid: {
type: DataTypes.STRING(40),
allowNull: false,
},
});
await queryInterface.addIndex("profileProperties", ["profileGuid", "profilePropertyRuleGuid"], {
unique: true,
fields: ["profileGuid", "profilePropertyRuleGuid"],
});
await queryInterface.addIndex("profileProperties", ["profileGuid"], {
fields: ["profileGuid"],
});
},
down: async (queryInterface) => {
await queryInterface.dropTable("profileProperties");
},
};