2017-03-14 13:02:43 +08:00
|
|
|
'use strict'
|
2016-07-30 11:21:38 +08:00
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
2017-03-24 11:24:44 +08:00
|
|
|
return queryInterface.addColumn('Notes', 'authorship', Sequelize.TEXT).then(function () {
|
|
|
|
return queryInterface.addColumn('Revisions', 'authorship', Sequelize.TEXT)
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.createTable('Authors', {
|
|
|
|
id: {
|
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
primaryKey: true,
|
|
|
|
autoIncrement: true
|
|
|
|
},
|
|
|
|
color: Sequelize.STRING,
|
|
|
|
noteId: Sequelize.UUID,
|
|
|
|
userId: Sequelize.UUID,
|
|
|
|
createdAt: Sequelize.DATE,
|
|
|
|
updatedAt: Sequelize.DATE
|
|
|
|
})
|
2018-07-09 09:27:17 +02:00
|
|
|
}).catch(function (error) {
|
2018-11-06 19:07:28 +01:00
|
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: authorship' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'authorship'" || error.message === 'column "authorship" of relation "Notes" already exists') {
|
2018-07-09 09:27:17 +02:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-08 18:45:51 +08:00
|
|
|
})
|
2016-07-30 11:21:38 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-24 11:24:44 +08:00
|
|
|
return queryInterface.dropTable('Authors').then(function () {
|
|
|
|
return queryInterface.removeColumn('Revisions', 'authorship')
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'authorship')
|
|
|
|
})
|
2016-07-30 11:21:38 +08:00
|
|
|
}
|
2017-03-08 18:45:51 +08:00
|
|
|
}
|