// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using Projection.ReadModel; #nullable disable namespace Projection.ReadModel.Migrations { [DbContext(typeof(ProjectionDbContext))] partial class ProjectionDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "10.0.0") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("Projection.ReadModel.ProcessedNotificationRow", b => { b.Property("Key") .HasColumnType("text") .HasColumnName("key"); b.Property("Actie") .IsRequired() .HasColumnType("text") .HasColumnName("actie"); b.Property("ReceivedAt") .HasColumnType("timestamp with time zone") .HasColumnName("received_at"); b.Property("ZaakId") .IsRequired() .HasColumnType("text") .HasColumnName("zaak_id"); b.HasKey("Key"); b.ToTable("processed_notifications", (string)null); }); modelBuilder.Entity("Projection.ReadModel.RegisterEntryRow", b => { b.Property("Id") .HasColumnType("text") .HasColumnName("id"); b.Property("Bsn") .HasColumnType("text") .HasColumnName("bsn"); b.Property("NaamPlaceholder") .HasColumnType("text") .HasColumnName("naam_placeholder"); b.Property("Status") .IsRequired() .HasColumnType("text") .HasColumnName("status"); b.HasKey("Id"); b.ToTable("register_projection", (string)null); }); #pragma warning restore 612, 618 } } }