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