//
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using West.TelegramBot.Reputation.Data;
#nullable disable
namespace West.TelegramBot.Reputation.Migrations
{
[DbContext(typeof(ReputationContext))]
partial class ReputationContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "6.0.2")
.HasAnnotation("Relational:MaxIdentifierLength", 64);
modelBuilder.Entity("West.TelegramBot.ChatManagement.Data.UserReputation", b =>
{
b.Property("ChatId")
.HasColumnType("bigint");
b.Property("UserId")
.HasColumnType("bigint");
b.Property("Value")
.HasColumnType("double");
b.HasKey("ChatId", "UserId");
b.HasIndex("ChatId");
b.ToTable("UserReputation");
});
#pragma warning restore 612, 618
}
}
}