DB Migration: ProjectManager wrong "down"-name

Reflect the name change of the table to 'project_manager' also in the down command.
pull/227/head
Michael Fürnschuß 4 years ago committed by GitHub
parent 8bf85e2eb6
commit fd69495084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,4 +16,4 @@ module.exports.up = (knex) =>
table.index('user_id');
});
module.exports.down = (knex) => knex.schema.dropTable('project_membership');
module.exports.down = (knex) => knex.schema.dropTable('project_manager');

Loading…
Cancel
Save