Ignore:
Timestamp:
10/29/25 15:41:48 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
3592476
Parents:
4708118
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

    r4708118 rf8af32b  
    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.