hedgedoc/lib/migrations/20200321153000-fix-account-deletion.js
Sheogorath dd539273fb fix(migrations): Remove unexpected shell call
This patch removes the call of `/usr/bin/env` when calling the migration
script in favour of using the processes own nodejs invocation path.

This should drop the requirement for `/usr/bin/env` to exist on a
system/in a container that runs hedgedoc.

Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2022-05-17 14:04:02 +02:00

68 lines
2.1 KiB
JavaScript

'use strict'
const { spawnSync } = require('child_process')
const path = require('path')
module.exports = {
up: function (queryInterface, Sequelize) {
const cleanup = spawnSync(process.argv[0], ['./bin/cleanup'], { cwd: path.resolve(__dirname, '../../') })
if (cleanup.status !== 0) {
throw new Error('Unable to cleanup')
}
return queryInterface.addConstraint('Notes', ['ownerId'], {
type: 'foreign key',
name: 'Notes_owner_fkey',
references: {
table: 'Users',
field: 'id'
},
onDelete: 'cascade'
}).then(function () {
return queryInterface.addConstraint('Revisions', ['noteId'], {
type: 'foreign key',
name: 'Revisions_note_fkey',
references: {
table: 'Notes',
field: 'id'
},
onDelete: 'cascade'
})
}).then(function () {
return queryInterface.addConstraint('Authors', ['noteId'], {
type: 'foreign key',
name: 'Author_note_fkey',
references: {
table: 'Notes',
field: 'id'
},
onDelete: 'cascade'
})
}).then(function () {
return queryInterface.addConstraint('Authors', ['userId'], {
type: 'foreign key',
name: 'Author_user_fkey',
references: {
table: 'Users',
field: 'id'
},
onDelete: 'cascade'
})
}).catch(function (error) {
if (error.message.toLowerCase().includes('duplicate key on write or update')) {
// eslint-disable-next-line no-console
console.log('Migration has already run… ignoring.')
} else {
throw error
}
})
},
down: function (queryInterface, Sequelize) {
return queryInterface.removeConstraint('Notes', 'Notes_owner_fkey')
.then(function () {
return queryInterface.removeConstraint('Revisions', 'Revisions_note_fkey')
}).then(function () {
return queryInterface.removeConstraint('Authors', 'Author_note_fkey')
}).then(function () {
return queryInterface.removeConstraint('Authors', 'Author_user_fkey')
})
}
}