mirror of
https://github.com/status-im/codimd.git
synced 2025-01-27 08:04:56 +00:00
147c20064f
Signed-off-by: Raccoon <raccoon@hackmd.io>
20 lines
830 B
TypeScript
20 lines
830 B
TypeScript
export = {
|
|
up: function (queryInterface, Sequelize) {
|
|
return queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING).then(function () {
|
|
return queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
|
|
}).catch(function (error) {
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: accessToken' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'accessToken'" || error.message === 'column "accessToken" of relation "Users" already exists') {
|
|
console.log('Migration has already run… ignoring.')
|
|
} else {
|
|
throw error
|
|
}
|
|
})
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
return queryInterface.removeColumn('Users', 'accessToken').then(function () {
|
|
return queryInterface.removeColumn('Users', 'refreshToken')
|
|
})
|
|
}
|
|
}
|