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
|
|
|
})
|
2018-07-09 07:27:17 +00:00
|
|
|
}).catch(function (error) {
|
2018-11-06 18:07:28 +00:00
|
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: shortid' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'shortid'" || error.message === 'column "shortid" 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) {
|
|
|
|
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')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|