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
2017-04-26 21:47:03 -07:00

15 lines
300 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');
},
};