From 711a4dc9354870dc116eb7d66c73d59f7d6371ed Mon Sep 17 00:00:00 2001 From: Nathan BOILEAU Date: Sat, 4 Feb 2023 11:29:06 +0100 Subject: [PATCH] Supprimer 'Sources/EFLol/Migrations/20230204101816_migration1.Designer.cs' --- .../20230204101816_migration1.Designer.cs | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 Sources/EFLol/Migrations/20230204101816_migration1.Designer.cs diff --git a/Sources/EFLol/Migrations/20230204101816_migration1.Designer.cs b/Sources/EFLol/Migrations/20230204101816_migration1.Designer.cs deleted file mode 100644 index 6210419..0000000 --- a/Sources/EFLol/Migrations/20230204101816_migration1.Designer.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -using EFLol; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; - -#nullable disable - -namespace EFLol.Migrations -{ - [DbContext(typeof(ChampionContext))] - [Migration("20230204101816_migration1")] - partial class migration1 - { - /// - protected override void BuildTargetModel(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 - } - } -}