1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +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 93bda368f1
commit cad3233da7

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