diff --git a/Sources/EFLol/Migrations/ChampionContextModelSnapshot.cs b/Sources/EFLol/Migrations/ChampionContextModelSnapshot.cs
deleted file mode 100644
index cf6018a..0000000
--- a/Sources/EFLol/Migrations/ChampionContextModelSnapshot.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-using EFLol;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.EntityFrameworkCore.Infrastructure;
-using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
-
-#nullable disable
-
-namespace EFLol.Migrations
-{
- [DbContext(typeof(ChampionContext))]
- partial class ChampionContextModelSnapshot : ModelSnapshot
- {
- protected override void BuildModel(ModelBuilder modelBuilder)
- {
-#pragma warning disable 612, 618
- modelBuilder.HasAnnotation("ProductVersion", "7.0.2");
-
- modelBuilder.Entity("EFLol.ChampionEntity", b =>
- {
- b.Property("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("INTEGER");
-
- b.Property("Bio")
- .IsRequired()
- .HasColumnType("TEXT");
-
- b.Property("Name")
- .IsRequired()
- .HasColumnType("TEXT");
-
- b.HasKey("Id");
-
- b.ToTable("Champions");
- });
-#pragma warning restore 612, 618
- }
- }
-}