Open brukeg opened 1 year ago
Transactions need a category id which relates to a specific category description. Eg. transaction.category_id = transaction_category.id and transaction_category.id = 5542 = transaction_category.description = Automated Fuel Dispensers
transaction.category_id = transaction_category.id
transaction_category.id = 5542
transaction_category.description = Automated Fuel Dispensers
We should use MMC https://en.wikipedia.org/wiki/Merchant_category_code. An MCC is used to classify a business by the types of goods or services it provides.
This will require updates to our database in the form of a new table transaction_categories. TBD.
transaction_categories
Transactions need a category id which relates to a specific category description. Eg.
transaction.category_id = transaction_category.id
andtransaction_category.id = 5542
=transaction_category.description = Automated Fuel Dispensers
We should use MMC https://en.wikipedia.org/wiki/Merchant_category_code. An MCC is used to classify a business by the types of goods or services it provides.
This will require updates to our database in the form of a new table
transaction_categories
. TBD.