2017-03-27 11:23:00 +00:00
|
|
|
'use strict'
|
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.addColumn('Notes', 'alias', {
|
2017-03-28 07:16:09 +00:00
|
|
|
type: Sequelize.STRING
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addIndex('Notes', ['alias'], {
|
|
|
|
indicesType: 'UNIQUE'
|
|
|
|
})
|
2018-07-09 07:27:17 +00:00
|
|
|
}).catch(function (error) {
|
2018-09-05 14:08:32 +00:00
|
|
|
if (error.message === "ER_DUP_FIELDNAME: Duplicate column name 'alias'" || error.message === 'column "alias" of relation "Notes" already exists') {
|
2018-07-09 07:27:17 +00:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-27 11:23:00 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-28 07:16:09 +00:00
|
|
|
return queryInterface.removeColumn('Notes', 'alias').then(function () {
|
|
|
|
return queryInterface.removeIndex('Notes', ['alias'])
|
|
|
|
})
|
2017-03-27 11:23:00 +00:00
|
|
|
}
|
|
|
|
}
|