mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00
13 lines
375 B
JavaScript
13 lines
375 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: function (queryInterface, Sequelize) {
|
|
queryInterface.addColumn('Users', 'email', Sequelize.TEXT);
|
|
queryInterface.addColumn('Users', 'password', Sequelize.TEXT);
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
queryInterface.removeColumn('Users', 'email');
|
|
queryInterface.removeColumn('Users', 'password');
|
|
}
|
|
};
|