Ignore:
Timestamp:
12/09/25 14:54:20 (10 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
615f18d, f735dac
Parents:
334981d
Message:

Refactor model properties for consistency and clarity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Migrations/AppDbContextModelSnapshot.cs

    r334981d rab652ff  
    3131                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
    3232
    33                     b.Property<int>("UserId")
    34                         .HasColumnType("integer");
    35 
    36                     b.Property<string>("address")
    37                         .HasColumnType("text");
    38 
    39                     b.Property<string>("city")
    40                         .HasColumnType("text");
    41 
    42                     b.Property<string>("microsoftEmail")
    43                         .HasColumnType("text");
    44 
    45                     b.Property<string>("municipality")
    46                         .HasColumnType("text");
    47 
    48                     b.Property<string>("phoneNumber")
    49                         .HasColumnType("text");
     33                    b.Property<string>("Address")
     34                        .HasColumnType("text");
     35
     36                    b.Property<string>("City")
     37                        .HasColumnType("text");
     38
     39                    b.Property<string>("MicrosoftEmail")
     40                        .HasColumnType("text");
     41
     42                    b.Property<string>("Municipality")
     43                        .HasColumnType("text");
     44
     45                    b.Property<string>("PhoneNumber")
     46                        .HasColumnType("text");
     47
     48                    b.Property<int>("UserId")
     49                        .HasColumnType("integer");
    5050
    5151                    b.HasKey("Id");
     
    8080                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
    8181
    82                     b.Property<string>("body")
    83                         .HasColumnType("text");
    84 
    85                     b.Property<int>("cost")
    86                         .HasColumnType("integer");
    87 
    88                     b.Property<string>("name")
     82                    b.Property<string>("Body")
     83                        .HasColumnType("text");
     84
     85                    b.Property<int>("Cost")
     86                        .HasColumnType("integer");
     87
     88                    b.Property<string>("Name")
    8989                        .HasColumnType("text");
    9090
     
    136136                    b.Property<int>("MajorId")
    137137                        .HasColumnType("integer");
     138
     139                    b.Property<string>("StudyStatus")
     140                        .HasColumnType("text");
     141
     142                    b.Property<string>("StudyType")
     143                        .HasColumnType("text");
    138144
    139145                    b.Property<int>("UserId")
     
    167173                        .HasColumnType("real");
    168174
    169                     b.Property<int>("UserId")
    170                         .HasColumnType("integer");
    171 
    172                     b.Property<int>("tip")
     175                    b.Property<int>("HighSchoolType")
     176                        .HasColumnType("integer");
     177
     178                    b.Property<string>("StudyLanguage")
     179                        .HasColumnType("text");
     180
     181                    b.Property<int>("UserId")
    173182                        .HasColumnType("integer");
    174183
     
    227236                        .HasColumnType("integer");
    228237
    229                     b.Property<int>("Akreditacija")
     238                    b.Property<int>("Accreditation")
    230239                        .HasColumnType("integer");
    231240
     
    379388                        .HasColumnType("timestamp with time zone");
    380389
     390                    b.Property<string>("Citizenship")
     391                        .HasColumnType("text");
     392
    381393                    b.Property<DateTime>("CreatedAt")
    382394                        .HasColumnType("timestamp with time zone");
     
    388400                        .HasColumnType("text");
    389401
     402                    b.Property<string>("Gender")
     403                        .HasColumnType("text");
     404
    390405                    b.Property<string>("Index")
    391406                        .HasColumnType("text");
    392407
     408                    b.Property<string>("MiddleName")
     409                        .HasColumnType("text");
     410
    393411                    b.Property<string>("Name")
     412                        .HasColumnType("text");
     413
     414                    b.Property<string>("Nationality")
    394415                        .HasColumnType("text");
    395416
Note: See TracChangeset for help on using the changeset viewer.