mirror of
https://github.com/outline/outline.git
synced 2026-06-30 19:47:28 +03:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addIndex("events", ["documentId"]);
|
|
},
|
|
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.removeIndex("events", ["documentId"]);
|
|
}
|
|
};
|