// using System; using BTCPayServer.Plugins.Test; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace BTCPayServer.Plugins.Test.Migrations { [DbContext(typeof(TestPluginDbContext))] partial class TestPluginDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasDefaultSchema("BTCPayServer.Plugins.Test") .HasAnnotation("ProductVersion", "3.1.10"); modelBuilder.Entity("BTCPayServer.Plugins.Test.Data.TestPluginData", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Timestamp") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("TestPluginRecords"); }); #pragma warning restore 612, 618 } } }