This reverts commitc8934e53da. Revert "Adding Blocking to migrations" This reverts commitc8934e53da.
128 lines
5.4 KiB
C#
128 lines
5.4 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace pointMaster.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class DateTime : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Patruljer",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
DateCreated = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Patruljer", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Poster",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Location = table.Column<string>(type: "text", nullable: false),
|
|
Description = table.Column<string>(type: "text", nullable: false),
|
|
DateCreated = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Poster", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "PatruljeMedlemmer",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Age = table.Column<int>(type: "integer", nullable: false),
|
|
PatruljeId = table.Column<int>(type: "integer", nullable: false),
|
|
DateCreated = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_PatruljeMedlemmer", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_PatruljeMedlemmer_Patruljer_PatruljeId",
|
|
column: x => x.PatruljeId,
|
|
principalTable: "Patruljer",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Points",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Points = table.Column<int>(type: "integer", nullable: false),
|
|
Turnout = table.Column<int>(type: "integer", nullable: false),
|
|
PatruljeId = table.Column<int>(type: "integer", nullable: false),
|
|
PosterId = table.Column<int>(type: "integer", nullable: false),
|
|
DateCreated = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Points", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Points_Patruljer_PatruljeId",
|
|
column: x => x.PatruljeId,
|
|
principalTable: "Patruljer",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_Points_Poster_PosterId",
|
|
column: x => x.PosterId,
|
|
principalTable: "Poster",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_PatruljeMedlemmer_PatruljeId",
|
|
table: "PatruljeMedlemmer",
|
|
column: "PatruljeId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Points_PatruljeId",
|
|
table: "Points",
|
|
column: "PatruljeId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Points_PosterId",
|
|
table: "Points",
|
|
column: "PosterId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "PatruljeMedlemmer");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Points");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Patruljer");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Poster");
|
|
}
|
|
}
|
|
}
|