Create expense.js (sequelize) in model for Financial Ledger
The basic financial ledger has the following columns:
User ID Number (set as primary key for 'joining' with other tables)
Transaction ID number (AUTO INCREMENT)
Transaction/Record Date (DATE)
Ledger Month
Description of Transaction (255 VARCHAR)
Category (20 VARCHAR)
Amount (DECIMAL 8,2)
Note: Each user has it's own table of financial ledger. When user signs up for the app, a table is created. We'll need to develop an ORM that performs this function
Create expense.js (sequelize) in model for Financial Ledger
The basic financial ledger has the following columns:
Note: Each user has it's own table of financial ledger. When user signs up for the app, a table is created. We'll need to develop an ORM that performs this function