mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
67b1fe5514
Co-authored-by: Tom Moor <tom.moor@gmail.com>
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addIndex("attachments", ["key"]);
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeIndex("attachments", ["key"]);
|
|
},
|
|
};
|