Ignore:
Timestamp:
09/18/22 18:09:53 (22 months ago)
Author:
Danilo <danilo.najkov@…>
Branches:
master
Parents:
49b0bbd
Message:

vip functionallity + menu fields + alergens filtering + google/fb login + email queueing

Location:
resTools_backend/backend/Migrations
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • resTools_backend/backend/Migrations/DataContextModelSnapshot.cs

    r49b0bbd r13f1472  
    3131                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
    3232
     33                    b.Property<string>("Alergens")
     34                        .IsRequired()
     35                        .HasColumnType("text");
     36
    3337                    b.Property<string>("Description")
    3438                        .IsRequired()
    3539                        .HasColumnType("text");
    3640
     41                    b.Property<byte[]>("Image")
     42                        .IsRequired()
     43                        .HasColumnType("bytea");
     44
     45                    b.Property<bool>("IsVipOnly")
     46                        .HasColumnType("boolean");
     47
    3748                    b.Property<int>("Price")
    3849                        .HasColumnType("integer");
     
    5061
    5162                    b.ToTable("MenuItems");
     63                });
     64
     65            modelBuilder.Entity("backend.Entities.QueueItem", b =>
     66                {
     67                    b.Property<int>("Id")
     68                        .ValueGeneratedOnAdd()
     69                        .HasColumnType("integer");
     70
     71                    NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
     72
     73                    b.Property<DateTime>("CreatedAt")
     74                        .HasColumnType("timestamp with time zone");
     75
     76                    b.Property<string>("Message")
     77                        .IsRequired()
     78                        .HasColumnType("text");
     79
     80                    b.Property<string>("Reciptient")
     81                        .IsRequired()
     82                        .HasColumnType("text");
     83
     84                    b.Property<int>("Retries")
     85                        .HasColumnType("integer");
     86
     87                    b.Property<string>("Subject")
     88                        .IsRequired()
     89                        .HasColumnType("text");
     90
     91                    b.HasKey("Id");
     92
     93                    b.ToTable("QueueItems");
    5294                });
    5395
     
    225267
    226268                    b.Property<bool>("IsConfirmed")
     269                        .HasColumnType("boolean");
     270
     271                    b.Property<bool>("IsVip")
    227272                        .HasColumnType("boolean");
    228273
Note: See TracChangeset for help on using the changeset viewer.