Ignore:
Timestamp:
10/21/25 17:21:47 (11 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
aed1148
Parents:
618be76
Message:

Refactor user management: update models, repositories, and services; remove obsolete files

File:
1 moved

Legend:

Unmodified
Added
Removed
  • iknow-api/Migrations/20251021141534_InitialCreate.cs

    r618be76 r9694de9  
    1414        {
    1515            migrationBuilder.CreateTable(
    16                 name: "Users",
     16                name: "User",
    1717                columns: table => new
    1818                {
     
    3030                constraints: table =>
    3131                {
    32                     table.PrimaryKey("PK_Users", x => x.Id);
     32                    table.PrimaryKey("PK_User", x => x.Id);
    3333                });
    3434        }
     
    3838        {
    3939            migrationBuilder.DropTable(
    40                 name: "Users");
     40                name: "User");
    4141        }
    4242    }
Note: See TracChangeset for help on using the changeset viewer.