mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("collections", "documentStructureVersion", {
|
|
type: Sequelize.INTEGER,
|
|
allowNull: false,
|
|
defaultValue: 0,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn(
|
|
"collections",
|
|
"documentStructureVersion"
|
|
);
|
|
},
|
|
};
|