2017-03-27 07:23:00 -04:00
|
|
|
'use strict'
|
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.addColumn('Notes', 'alias', {
|
2017-03-28 03:16:09 -04:00
|
|
|
type: Sequelize.STRING
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addIndex('Notes', ['alias'], {
|
|
|
|
indicesType: 'UNIQUE'
|
|
|
|
})
|
2018-07-09 03:27:17 -04:00
|
|
|
}).catch(function (error) {
|
2020-12-02 11:22:27 -05:00
|
|
|
if (error.message.toLowerCase().includes('duplicate column name') ||
|
|
|
|
error.message === 'column "alias" of relation "Notes" already exists') {
|
2019-05-30 18:27:56 -04:00
|
|
|
// eslint-disable-next-line no-console
|
2018-07-09 03:27:17 -04:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-27 07:23:00 -04:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-28 03:16:09 -04:00
|
|
|
return queryInterface.removeColumn('Notes', 'alias').then(function () {
|
|
|
|
return queryInterface.removeIndex('Notes', ['alias'])
|
|
|
|
})
|
2017-03-27 07:23:00 -04:00
|
|
|
}
|
|
|
|
}
|