Ignore:
Timestamp:
10/30/25 14:24:10 (11 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
5e22720
Parents:
f844b7e
Message:

Refactored enums

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

Legend:

Unmodified
Added
Removed
  • iknow-api/Migrations/20251030124902_new.Designer.cs

    rf844b7e r586825e  
    1313{
    1414    [DbContext(typeof(AppDbContext))]
    15     [Migration("20251029131316_InitialCreate")]
    16     partial class InitialCreate
     15    [Migration("20251030124902_new")]
     16    partial class @new
    1717    {
    1818        /// <inheritdoc />
     
    151151                        .HasColumnType("timestamp with time zone");
    152152
     153                    b.Property<string>("EMBG")
     154                        .HasColumnType("text");
     155
    153156                    b.Property<string>("Email")
    154157                        .HasColumnType("text");
  • iknow-api/Migrations/20251030124902_new.cs

    rf844b7e r586825e  
    88{
    99    /// <inheritdoc />
    10     public partial class InitialCreate : Migration
     10    public partial class @new : Migration
    1111    {
    1212        /// <inheritdoc />
     
    2020                        .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
    2121                    Name = table.Column<string>(type: "text", nullable: true),
     22                    EMBG = table.Column<string>(type: "text", nullable: true),
    2223                    Surname = table.Column<string>(type: "text", nullable: true),
    2324                    Index = table.Column<string>(type: "text", nullable: true),
  • iknow-api/Migrations/AppDbContextModelSnapshot.cs

    rf844b7e r586825e  
    148148                        .HasColumnType("timestamp with time zone");
    149149
     150                    b.Property<string>("EMBG")
     151                        .HasColumnType("text");
     152
    150153                    b.Property<string>("Email")
    151154                        .HasColumnType("text");
Note: See TracChangeset for help on using the changeset viewer.