scoreboard-api/Server/Migrations/ServerDbContextModelSnapshot.cs
cuqmbr 9c76d4965b chore: update db model & migrations
Remove id field and set username field to be a primary key
2022-07-15 20:44:15 +03:00

39 lines
1.1 KiB
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Server.Data;
#nullable disable
namespace Server.Migrations
{
[DbContext(typeof(ServerDbContext))]
partial class ServerDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "6.0.6");
modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b =>
{
b.Property<string>("Username")
.HasColumnType("TEXT");
b.Property<DateTime>("PostTime")
.HasColumnType("TEXT");
b.Property<int>("Score")
.HasColumnType("INTEGER");
b.HasKey("Username");
b.ToTable("Scoreboard");
});
#pragma warning restore 612, 618
}
}
}