2017-03-27 07:23:00 -04:00
|
|
|
'use strict'
|
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.addColumn('Notes', 'shortid', {
|
|
|
|
type: Sequelize.STRING,
|
2017-03-28 03:16:09 -04:00
|
|
|
defaultValue: '0000000000',
|
2017-03-27 07:23:00 -04:00
|
|
|
allowNull: false
|
2017-03-28 03:16:09 -04:00
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addIndex('Notes', ['shortid'], {
|
|
|
|
indicesType: 'UNIQUE'
|
|
|
|
})
|
2017-03-27 07:23:00 -04:00
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addColumn('Notes', 'permission', {
|
|
|
|
type: Sequelize.STRING,
|
2017-03-28 03:16:09 -04:00
|
|
|
defaultValue: 'private',
|
|
|
|
allowNull: false
|
2017-03-27 07:23:00 -04:00
|
|
|
})
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addColumn('Notes', 'viewcount', {
|
2017-03-28 03:16:09 -04:00
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
defaultValue: 0
|
2017-03-27 07:23:00 -04:00
|
|
|
})
|
2018-07-09 03:27:17 -04:00
|
|
|
}).catch(function (error) {
|
2020-12-02 11:22:27 -05:00
|
|
|
if (error.message === 'column "shortid" of relation "Notes" already exists' ||
|
|
|
|
error.message.toLowerCase().includes('duplicate column name')) {
|
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) {
|
|
|
|
return queryInterface.removeColumn('Notes', 'viewcount')
|
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'permission')
|
|
|
|
})
|
2017-03-28 03:16:09 -04:00
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeIndex('Notes', ['shortid'])
|
|
|
|
})
|
2017-03-27 07:23:00 -04:00
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'shortid')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|