1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 23:59:48 +02:00

fix: Fix missed table name (#227)

This commit is contained in:
Michael Fürnschuß 2022-04-25 13:00:14 +02:00 committed by GitHub
parent f03bb5a78f
commit 536064fdfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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');