mirror of
https://github.com/outline/outline.git
synced 2026-06-28 18:54:24 +03:00
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("revisions", "state", {
|
|
type: Sequelize.BLOB,
|
|
});
|
|
},
|
|
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.removeColumn("revisions", "state");
|
|
},
|
|
};
|