From 842502e82c4ddfea05a5f77c361aaa27f75afc42 Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 26 Oct 2025 22:57:28 +0100 Subject: Refactor db schema and add audits --- api/WhatApi/Migrations/20251013213511_Initial.cs | 75 ------------------------ 1 file changed, 75 deletions(-) delete mode 100644 api/WhatApi/Migrations/20251013213511_Initial.cs (limited to 'api/WhatApi/Migrations/20251013213511_Initial.cs') diff --git a/api/WhatApi/Migrations/20251013213511_Initial.cs b/api/WhatApi/Migrations/20251013213511_Initial.cs deleted file mode 100644 index 1fa8bbf..0000000 --- a/api/WhatApi/Migrations/20251013213511_Initial.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Net; -using Microsoft.EntityFrameworkCore.Migrations; -using NetTopologySuite.Geometries; - -#nullable disable - -namespace WhatApi.Migrations -{ - /// - public partial class Initial : Migration - { - /// - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AlterDatabase() - .Annotation("Npgsql:PostgresExtension:postgis", ",,"); - - migrationBuilder.CreateTable( - name: "Content", - columns: table => new - { - Id = table.Column(type: "uuid", nullable: false), - Mime = table.Column(type: "text", nullable: false), - Created = table.Column(type: "timestamp with time zone", nullable: false), - BlobId = table.Column(type: "uuid", nullable: false), - Ip = table.Column(type: "inet", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Content", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Place", - columns: table => new - { - Id = table.Column(type: "uuid", nullable: false), - ContentId = table.Column(type: "uuid", nullable: false), - Location = table.Column(type: "geometry(point,4326)", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Place", x => x.Id); - table.ForeignKey( - name: "FK_Place_Content_ContentId", - column: x => x.ContentId, - principalTable: "Content", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateIndex( - name: "IX_Place_ContentId", - table: "Place", - column: "ContentId"); - - migrationBuilder.CreateIndex( - name: "IX_Place_Location", - table: "Place", - column: "Location") - .Annotation("Npgsql:IndexMethod", "gist"); - } - - /// - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "Place"); - - migrationBuilder.DropTable( - name: "Content"); - } - } -} -- cgit v1.3