This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/migrations/20160815142720-app-collection-urlId.js
2016-08-15 21:41:51 +02:00

19 lines
331 B
JavaScript

'use strict';
module.exports = {
up: function (queryInterface, Sequelize) {
queryInterface.addColumn(
'atlases',
'urlId',
{
type: Sequelize.STRING,
unique: true,
}
);
},
down: function (queryInterface, Sequelize) {
queryInterface.removeColumn('atlases', 'urlId');
}
};