Ignore:
Timestamp:
12/09/25 14:54:20 (10 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
33c69d6, 691f152
Parents:
22439d3
Message:

Refactor model properties for consistency and clarity

File:
1 moved

Legend:

Unmodified
Added
Removed
  • iknow-api/Migrations/20251209133847_InitalCreate.Designer.cs

    r22439d3 r2d64b2e  
    1313{
    1414    [DbContext(typeof(AppDbContext))]
    15     [Migration("20251209115716_InitialCreate")]
    16     partial class InitialCreate
     15    [Migration("20251209133847_InitalCreate")]
     16    partial class InitalCreate
    1717    {
    1818        /// <inheritdoc />
     
    3434                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
    3535
    36                     b.Property<int>("UserId")
    37                         .HasColumnType("integer");
    38 
    39                     b.Property<string>("address")
    40                         .HasColumnType("text");
    41 
    42                     b.Property<string>("city")
    43                         .HasColumnType("text");
    44 
    45                     b.Property<string>("microsoftEmail")
    46                         .HasColumnType("text");
    47 
    48                     b.Property<string>("municipality")
    49                         .HasColumnType("text");
    50 
    51                     b.Property<string>("phoneNumber")
    52                         .HasColumnType("text");
     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");
     50
     51                    b.Property<int>("UserId")
     52                        .HasColumnType("integer");
    5353
    5454                    b.HasKey("Id");
     
    8383                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
    8484
    85                     b.Property<string>("body")
    86                         .HasColumnType("text");
    87 
    88                     b.Property<int>("cost")
    89                         .HasColumnType("integer");
    90 
    91                     b.Property<string>("name")
     85                    b.Property<string>("Body")
     86                        .HasColumnType("text");
     87
     88                    b.Property<int>("Cost")
     89                        .HasColumnType("integer");
     90
     91                    b.Property<string>("Name")
    9292                        .HasColumnType("text");
    9393
     
    139139                    b.Property<int>("MajorId")
    140140                        .HasColumnType("integer");
     141
     142                    b.Property<string>("StudyStatus")
     143                        .HasColumnType("text");
     144
     145                    b.Property<string>("StudyType")
     146                        .HasColumnType("text");
    141147
    142148                    b.Property<int>("UserId")
     
    170176                        .HasColumnType("real");
    171177
    172                     b.Property<int>("UserId")
    173                         .HasColumnType("integer");
    174 
    175                     b.Property<int>("tip")
     178                    b.Property<int>("HighSchoolType")
     179                        .HasColumnType("integer");
     180
     181                    b.Property<string>("StudyLanguage")
     182                        .HasColumnType("text");
     183
     184                    b.Property<int>("UserId")
    176185                        .HasColumnType("integer");
    177186
     
    230239                        .HasColumnType("integer");
    231240
    232                     b.Property<int>("Akreditacija")
     241                    b.Property<int>("Accreditation")
    233242                        .HasColumnType("integer");
    234243
     
    382391                        .HasColumnType("timestamp with time zone");
    383392
     393                    b.Property<string>("Citizenship")
     394                        .HasColumnType("text");
     395
    384396                    b.Property<DateTime>("CreatedAt")
    385397                        .HasColumnType("timestamp with time zone");
     
    391403                        .HasColumnType("text");
    392404
     405                    b.Property<string>("Gender")
     406                        .HasColumnType("text");
     407
    393408                    b.Property<string>("Index")
    394409                        .HasColumnType("text");
    395410
     411                    b.Property<string>("MiddleName")
     412                        .HasColumnType("text");
     413
    396414                    b.Property<string>("Name")
     415                        .HasColumnType("text");
     416
     417                    b.Property<string>("Nationality")
    397418                        .HasColumnType("text");
    398419
Note: See TracChangeset for help on using the changeset viewer.