fix: filter the uncategorized transactions out of matched transactions

This commit is contained in:
Ahmed Bouhuolia
2024-07-03 17:23:12 +02:00
parent 91730d204e
commit 67b519db61
19 changed files with 98 additions and 91 deletions

View File

@@ -3,7 +3,7 @@ exports.up = function (knex) {
table.increments('id');
table.integer('uncategorized_transaction_id').unsigned();
table.string('reference_type');
table.integer('reference_id');
table.integer('reference_id').unsigned();
table.decimal('amount');
table.timestamps();
});