From 1a96616699ab41bf6343bc1acc45a836c3e6caf3 Mon Sep 17 00:00:00 2001 From: Paweł Bernaciak Date: Fri, 22 Dec 2023 16:02:41 +0100 Subject: Backup --- CoreWiki/Migrations/20230209093124_initial.cs | 35 --------------------------- 1 file changed, 35 deletions(-) delete mode 100644 CoreWiki/Migrations/20230209093124_initial.cs (limited to 'CoreWiki/Migrations/20230209093124_initial.cs') diff --git a/CoreWiki/Migrations/20230209093124_initial.cs b/CoreWiki/Migrations/20230209093124_initial.cs deleted file mode 100644 index 84a7453..0000000 --- a/CoreWiki/Migrations/20230209093124_initial.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace CoreWiki.Migrations -{ - /// - public partial class initial : Migration - { - /// - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "Articles", - columns: table => new - { - Topic = table.Column(type: "TEXT", nullable: false), - Published = table.Column(type: "TEXT", nullable: false), - Content = table.Column(type: "TEXT", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Articles", x => x.Topic); - }); - } - - /// - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "Articles"); - } - } -} -- cgit v1.2.3