mirror of
https://github.com/outline/outline.git
synced 2026-06-30 11:44:24 +03:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: function (queryInterface, Sequelize) {
|
|
queryInterface.addColumn(
|
|
'documents',
|
|
'collaboratorIds',
|
|
{ type: Sequelize.ARRAY(Sequelize.UUID) }
|
|
)
|
|
},
|
|
down: function (queryInterface, Sequelize) {
|
|
queryInterface.removeColumn('documents', 'collaboratorIds');
|
|
},
|
|
};
|