Changeset f844b7e for iknow-api/Models


Ignore:
Timestamp:
10/29/25 15:41:48 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
586825e
Parents:
1d32d5c
Message:

Add EMBG property and consolidate migrations

Added EMBG property to User and RegisterDto classes to store unique user identifiers. Removed outdated migration files and introduced a new consolidated migration (20251029131316_InitialCreate) to define the database schema, including User, ContactInfo, EnrollmentInfo, HighSchool, and RefreshToken tables with appropriate relationships. Updated AppDbContextModelSnapshot to reflect the new schema. Changed the development database connection string in appsettings.Development.json for improved configuration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Models/User.cs

    r1d32d5c rf844b7e  
    1414        public int Id { get; set; }
    1515        public string? Name { get; set; }
     16        public string? EMBG {get; set; }
    1617        public string? Surname { get; set; }
    1718        public string? Index { get; set; }
Note: See TracChangeset for help on using the changeset viewer.