hedgedoc/lib/migrations/20150702001020-update-to-0_3_1.js

47 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-03-27 07:23:00 -04:00
'use strict'
module.exports = {
up: function (queryInterface, Sequelize) {
return queryInterface.addColumn('Notes', 'shortid', {
type: Sequelize.STRING,
defaultValue: '0000000000',
2017-03-27 07:23:00 -04:00
allowNull: false
}).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,
defaultValue: 'private',
allowNull: false
2017-03-27 07:23:00 -04:00
})
}).then(function () {
return queryInterface.addColumn('Notes', 'viewcount', {
type: Sequelize.INTEGER,
defaultValue: 0
2017-03-27 07:23:00 -04:00
})
}).catch(function (error) {
if (error.message === 'column "shortid" of relation "Notes" already exists' ||
error.message.toLowerCase().includes('duplicate column name')) {
// eslint-disable-next-line no-console
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')
})
.then(function () {
return queryInterface.removeIndex('Notes', ['shortid'])
})
2017-03-27 07:23:00 -04:00
.then(function () {
return queryInterface.removeColumn('Notes', 'shortid')
})
}
}