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