Ignore:
Timestamp:
10/22/25 13:20:23 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
5b42c8d
Parents:
5aa102d (diff), 9a57e89 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

test

Location:
iknow-api/Migrations
Files:
1 edited
2 moved

Legend:

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

    r5aa102d rd025ba3  
    66using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
    77using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
     8using iknow_api.Core.Data;
    89
    910#nullable disable
     
    1213{
    1314    [DbContext(typeof(AppDbContext))]
    14     [Migration("20251020130122_InitialCreate")]
     15    [Migration("20251021141534_InitialCreate")]
    1516    partial class InitialCreate
    1617    {
     
    2526            NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
    2627
    27             modelBuilder.Entity("iknow_api.Models.Users", b =>
     28            modelBuilder.Entity("iknow_api.Core.Models.User", b =>
    2829                {
    2930                    b.Property<int>("Id")
     
    5960                    b.HasKey("Id");
    6061
    61                     b.ToTable("Users");
     62                    b.ToTable("User");
    6263                });
    6364#pragma warning restore 612, 618
  • iknow-api/Migrations/20251021141534_InitialCreate.cs

    r5aa102d rd025ba3  
    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    }
  • iknow-api/Migrations/AppDbContextModelSnapshot.cs

    r5aa102d rd025ba3  
    55using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
    66using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
     7using iknow_api.Core.Data;
    78
    89#nullable disable
     
    2223            NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
    2324
    24             modelBuilder.Entity("iknow_api.Models.Users", b =>
     25            modelBuilder.Entity("iknow_api.Core.Models.User", b =>
    2526                {
    2627                    b.Property<int>("Id")
     
    5657                    b.HasKey("Id");
    5758
    58                     b.ToTable("Users");
     59                    b.ToTable("User");
    5960                });
    6061#pragma warning restore 612, 618
Note: See TracChangeset for help on using the changeset viewer.