Changeset 13f1472 for resTools_backend/backend/Migrations
- Timestamp:
- 09/18/22 18:09:53 (2 years ago)
- Branches:
- master
- Parents:
- 49b0bbd
- Location:
- resTools_backend/backend/Migrations
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resTools_backend/backend/Migrations/DataContextModelSnapshot.cs
r49b0bbd r13f1472 31 31 NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id")); 32 32 33 b.Property<string>("Alergens") 34 .IsRequired() 35 .HasColumnType("text"); 36 33 37 b.Property<string>("Description") 34 38 .IsRequired() 35 39 .HasColumnType("text"); 36 40 41 b.Property<byte[]>("Image") 42 .IsRequired() 43 .HasColumnType("bytea"); 44 45 b.Property<bool>("IsVipOnly") 46 .HasColumnType("boolean"); 47 37 48 b.Property<int>("Price") 38 49 .HasColumnType("integer"); … … 50 61 51 62 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"); 52 94 }); 53 95 … … 225 267 226 268 b.Property<bool>("IsConfirmed") 269 .HasColumnType("boolean"); 270 271 b.Property<bool>("IsVip") 227 272 .HasColumnType("boolean"); 228 273
Note:
See TracChangeset
for help on using the changeset viewer.