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.
outline/server/migrations/20180708231200-serviceid-null.js
2018-07-10 20:44:59 -07:00

14 lines
368 B
JavaScript

module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.changeColumn('users', 'serviceId', {
type: Sequelize.STRING,
allowNull: true,
});
},
down: async (queryInterface, Sequelize) => {
await queryInterface.changeColumn('users', 'serviceId', {
type: Sequelize.STRING,
allowNull: false,
});
}
}