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/DTOs/UserDTO.cs

    r1d32d5c rf844b7e  
    1818        public string Name { get; set; } = string.Empty;
    1919        public string Surname { get; set; } = string.Empty;
     20        public string EMBG { get; set; } = string.Empty;
    2021        public string? Index { get; set; }
    2122        public string Email { get; set; } = string.Empty;
Note: See TracChangeset for help on using the changeset viewer.