mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 23:24:46 -04:00
12 lines
368 B
JavaScript
12 lines
368 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')
|
|
}
|
|
}
|