mirror of
https://github.com/outline/outline.git
synced 2026-06-30 03:34:24 +03:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addIndex('revisions', ['documentId']);
|
|
},
|
|
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.removeIndex('revisions', ['documentId']);
|
|
},
|
|
};
|