// using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace LiveChat.Migrations { [DbContext(typeof(ChattingContext))] [Migration("20230327073724_FuckThisShitv2")] partial class FuckThisShitv2 { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "7.0.4"); modelBuilder.Entity("ChatMessage", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Message") .HasColumnType("TEXT"); b.Property("User") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("Messages"); }); #pragma warning restore 612, 618 } } }