ScooterMcTooter / MoneyTracker

This is an application designed to visualize where your money is going and how much you are bringing in. The goal is to give the ability to plan for the future effectively by being able to immediately see the changes to the plan
1 stars 0 forks source link

#33 #36

Closed ScooterMcTooter closed 5 months ago

ScooterMcTooter commented 5 months ago

The most significant changes involve the addition of a new JobModel class and the creation of a Jobs table in the database. The JobModel class has been added to the ApplicationDbContext class and the AccountModel and UserModel classes have been updated to include a collection of JobModel. A new migration file has been added to create the Jobs table in the database.

  1. A new JobModel class has been added to the application. This class includes various properties related to job details. This change can be found in the JobModel.cs file in the MoneyTrackerMigrations.Models namespace.
  2. The ApplicationDbContext class has been updated to include a DbSet for JobModel and to define the relationships between JobModel and UserModel and JobModel and AccountModel. This change is reflected in the ApplicationDbContextModelSnapshot.cs file.
  3. The AccountModel and UserModel classes have been updated to include a collection of JobModel. This change is also reflected in the ApplicationDbContextModelSnapshot.cs file.
  4. A new migration file 20240524033411_33CreateJobTable.cs has been added to create the Jobs table in the database. This change is reflected in the migration file itself.