mirror of
https://github.com/status-im/codimd.git
synced 2025-02-04 22:13:32 +00:00
147c20064f
Signed-off-by: Raccoon <raccoon@hackmd.io>
25 lines
906 B
TypeScript
25 lines
906 B
TypeScript
export = {
|
|
up: function (queryInterface, Sequelize) {
|
|
return queryInterface.addColumn('Notes', 'lastchangeuserId', {
|
|
type: Sequelize.UUID
|
|
}).then(function () {
|
|
return queryInterface.addColumn('Notes', 'lastchangeAt', {
|
|
type: Sequelize.DATE
|
|
})
|
|
}).catch(function (error) {
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: lastchangeuserId' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'lastchangeuserId'" || error.message === 'column "lastchangeuserId" of relation "Notes" already exists') {
|
|
console.log('Migration has already run… ignoring.')
|
|
} else {
|
|
throw error
|
|
}
|
|
})
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
return queryInterface.removeColumn('Notes', 'lastchangeAt')
|
|
.then(function () {
|
|
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
|
|
})
|
|
}
|
|
}
|