// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using MyAi.Models.Data; #nullable disable namespace MyAi.Models.Migrations { [DbContext(typeof(MyAiDbContext))] partial class MyAiDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasDefaultSchema("myAi") .HasAnnotation("ProductVersion", "10.0.7") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); modelBuilder.Entity("MyAi.Models.Data.Entities.TemplateEntity", b => { b.Property("Key") .HasMaxLength(128) .HasColumnType("nvarchar(128)"); b.Property("Language") .HasMaxLength(8) .HasColumnType("nvarchar(8)"); b.Property("Description") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasDefaultValue(""); b.Property("UpdatedAt") .ValueGeneratedOnAdd() .HasColumnType("datetime2") .HasDefaultValueSql("SYSUTCDATETIME()"); b.Property("Value") .IsRequired() .HasColumnType("nvarchar(max)"); b.HasKey("Key", "Language"); b.ToTable("Templates", "myAi"); }); #pragma warning restore 612, 618 } } }