Designing Models and Database Structure for Transactions and Categories
What Are Django Models?
Models are Python classes that define your database tables.Django generates and manages the database for you!
Planning Our Models
We need:
Category (e.g., Food, Rent, Salary)
Transaction (amount, date, category, type, notes...
josephchu.dev1 min read