// using System; using DamageAssesment.Api.Surveys.Db; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace DamageAssesment.Api.Surveys.Migrations { [DbContext(typeof(SurveysDbContext))] partial class SurveysDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "7.0.9") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); modelBuilder.Entity("DamageAssesment.Api.Surveys.Db.Survey", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); b.Property("CreatedDate") .HasColumnType("datetime2"); b.Property("EndDate") .HasColumnType("datetime2"); b.Property("IsEnabled") .HasColumnType("bit"); b.Property("StartDate") .HasColumnType("datetime2"); b.HasKey("Id"); b.ToTable("Surveys"); }); modelBuilder.Entity("DamageAssesment.Api.Surveys.Db.SurveyTranslation", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); b.Property("Language") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("SurveyId") .HasColumnType("int"); b.Property("Title") .IsRequired() .HasMaxLength(200) .HasColumnType("nvarchar(200)"); b.HasKey("Id"); b.ToTable("SurveysTranslation"); }); #pragma warning restore 612, 618 } } }