mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
5870d988b5
add ‘use strict’ in all backend file
12 lines
392 B
JavaScript
12 lines
392 B
JavaScript
'use strict'
|
|
module.exports = {
|
|
up: function (queryInterface, Sequelize) {
|
|
queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING)
|
|
queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
queryInterface.removeColumn('Users', 'accessToken')
|
|
queryInterface.removeColumn('Users', 'refreshToken')
|
|
}
|
|
}
|