// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Server.Data; #nullable disable namespace Server.Migrations { [DbContext(typeof(ServerDbContext))] [Migration("20220715174201_Scoreboard")] partial class Scoreboard { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "6.0.6"); modelBuilder.Entity("SharedModels.ScoreboardRecord", b => { b.Property("Username") .HasColumnType("TEXT"); b.Property("PostTime") .HasColumnType("TEXT"); b.Property("Score") .HasColumnType("INTEGER"); b.HasKey("Username"); b.ToTable("Scoreboard"); }); #pragma warning restore 612, 618 } } }