feat: exclude/unexclude the uncategorized transactions

This commit is contained in:
Ahmed Bouhuolia
2024-06-20 13:50:29 +02:00
parent b6deb842ff
commit b37002bea6
8 changed files with 238 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
exports.up = function (knex) {
return knex.schema.table('uncategorized_cashflow_transactions', (table) => {
table.boolean('excluded');
});
};
exports.down = function (knex) {
return knex.schema.table('uncategorized_cashflow_transactions', (table) => {
table.dropColumn('excluded');
});
};