2017-03-27 11:23:00 +00:00
|
|
|
'use strict'
|
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.addColumn('Notes', 'shortid', {
|
|
|
|
type: Sequelize.STRING,
|
2017-03-28 07:16:09 +00:00
|
|
|
defaultValue: '0000000000',
|
2017-03-27 11:23:00 +00:00
|
|
|
allowNull: false
|
2017-03-28 07:16:09 +00:00
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addIndex('Notes', ['shortid'], {
|
|
|
|
indicesType: 'UNIQUE'
|
|
|
|
})
|
2017-03-27 11:23:00 +00:00
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addColumn('Notes', 'permission', {
|
|
|
|
type: Sequelize.STRING,
|
2017-03-28 07:16:09 +00:00
|
|
|
defaultValue: 'private',
|
|
|
|
allowNull: false
|
2017-03-27 11:23:00 +00:00
|
|
|
})
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addColumn('Notes', 'viewcount', {
|
2017-03-28 07:16:09 +00:00
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
defaultValue: 0
|
2017-03-27 11:23:00 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.removeColumn('Notes', 'viewcount')
|
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'permission')
|
|
|
|
})
|
2017-03-28 07:16:09 +00:00
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeIndex('Notes', ['shortid'])
|
|
|
|
})
|
2017-03-27 11:23:00 +00:00
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'shortid')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|