From 87115231b9522e9fc925a5411a518618c3fc2df3 Mon Sep 17 00:00:00 2001 From: Nathan BOILEAU Date: Sat, 4 Feb 2023 11:29:10 +0100 Subject: [PATCH] Supprimer 'Sources/EFLol/Migrations/20230204101816_migration1.cs' --- .../Migrations/20230204101816_migration1.cs | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100644 Sources/EFLol/Migrations/20230204101816_migration1.cs diff --git a/Sources/EFLol/Migrations/20230204101816_migration1.cs b/Sources/EFLol/Migrations/20230204101816_migration1.cs deleted file mode 100644 index c50961f..0000000 --- a/Sources/EFLol/Migrations/20230204101816_migration1.cs +++ /dev/null @@ -1,35 +0,0 @@ -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace EFLol.Migrations -{ - /// - public partial class migration1 : Migration - { - /// - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "Champions", - columns: table => new - { - Id = table.Column(type: "INTEGER", nullable: false) - .Annotation("Sqlite:Autoincrement", true), - Name = table.Column(type: "TEXT", nullable: false), - Bio = table.Column(type: "TEXT", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Champions", x => x.Id); - }); - } - - /// - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "Champions"); - } - } -}