Sequence/Migrations/20230405014613_initial.cs

493 lines
24 KiB
C#
Raw Normal View History

2023-04-05 01:58:24 +00:00
using System;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
namespace Sequence.Migrations
{
/// <inheritdoc />
public partial class initial : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterDatabase()
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetRoles",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
Name = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
NormalizedName = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
ConcurrencyStamp = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetRoles", x => x.Id);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetUsers",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
Name = table.Column<string>(type: "longtext", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
UserName = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
NormalizedUserName = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
Email = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
NormalizedEmail = table.Column<string>(type: "varchar(256)", maxLength: 256, nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EmailConfirmed = table.Column<bool>(type: "tinyint(1)", nullable: false),
PasswordHash = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
SecurityStamp = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
ConcurrencyStamp = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
PhoneNumber = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
PhoneNumberConfirmed = table.Column<bool>(type: "tinyint(1)", nullable: false),
TwoFactorEnabled = table.Column<bool>(type: "tinyint(1)", nullable: false),
LockoutEnd = table.Column<DateTimeOffset>(type: "datetime(6)", nullable: true),
LockoutEnabled = table.Column<bool>(type: "tinyint(1)", nullable: false),
AccessFailedCount = table.Column<int>(type: "int", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUsers", x => x.Id);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetRoleClaims",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
RoleId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
ClaimType = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
ClaimValue = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id);
table.ForeignKey(
name: "FK_AspNetRoleClaims_AspNetRoles_RoleId",
column: x => x.RoleId,
principalTable: "AspNetRoles",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetUserClaims",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
ClaimType = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
ClaimValue = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserClaims", x => x.Id);
table.ForeignKey(
name: "FK_AspNetUserClaims_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetUserLogins",
columns: table => new
{
LoginProvider = table.Column<string>(type: "varchar(255)", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
ProviderKey = table.Column<string>(type: "varchar(255)", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
ProviderDisplayName = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey });
table.ForeignKey(
name: "FK_AspNetUserLogins_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetUserRoles",
columns: table => new
{
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
RoleId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId });
table.ForeignKey(
name: "FK_AspNetUserRoles_AspNetRoles_RoleId",
column: x => x.RoleId,
principalTable: "AspNetRoles",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_AspNetUserRoles_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "AspNetUserTokens",
columns: table => new
{
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
LoginProvider = table.Column<string>(type: "varchar(255)", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
Name = table.Column<string>(type: "varchar(255)", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
Value = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4")
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name });
table.ForeignKey(
name: "FK_AspNetUserTokens_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "Hand",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_Hand", x => x.Id);
table.ForeignKey(
name: "FK_Hand_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "Deck",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
Suit = table.Column<int>(type: "int", nullable: false),
Value = table.Column<string>(type: "longtext", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
HandId = table.Column<Guid>(type: "char(36)", nullable: true, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_Deck", x => x.Id);
table.ForeignKey(
name: "FK_Deck_Hand_HandId",
column: x => x.HandId,
principalTable: "Hand",
principalColumn: "Id");
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "Players",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
HandId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_Players", x => x.Id);
table.ForeignKey(
name: "FK_Players_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_Players_Hand_HandId",
column: x => x.HandId,
principalTable: "Hand",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "Matches",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
Created = table.Column<DateTime>(type: "datetime(6)", nullable: false),
PlayerOneId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
PlayerTwoId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_Matches", x => x.Id);
table.ForeignKey(
name: "FK_Matches_Players_PlayerOneId",
column: x => x.PlayerOneId,
principalTable: "Players",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_Matches_Players_PlayerTwoId",
column: x => x.PlayerTwoId,
principalTable: "Players",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "PlayerCards",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
CardId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
PositionX = table.Column<int>(type: "int", nullable: false),
PositionY = table.Column<int>(type: "int", nullable: false),
PlayerId = table.Column<Guid>(type: "char(36)", nullable: true, collation: "ascii_general_ci")
},
constraints: table =>
{
table.PrimaryKey("PK_PlayerCards", x => x.Id);
table.ForeignKey(
name: "FK_PlayerCards_Deck_CardId",
column: x => x.CardId,
principalTable: "Deck",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_PlayerCards_Players_PlayerId",
column: x => x.PlayerId,
principalTable: "Players",
principalColumn: "Id");
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.InsertData(
table: "Deck",
columns: new[] { "Id", "HandId", "Suit", "Value" },
values: new object[,]
{
{ new Guid("0158f904-5c80-4d15-864c-b234dd8d596c"), null, 3, "Q" },
{ new Guid("0651b023-b17f-494a-88ed-ecbe2cfa7a49"), null, 2, "8" },
{ new Guid("123a0c42-19c2-4310-b557-fe9a4939c5db"), null, 1, "7" },
{ new Guid("1348276b-52f2-4708-bd38-7e3e11505271"), null, 0, "J" },
{ new Guid("1cd6d866-f3d9-4006-aad1-4a1e35f43a73"), null, 0, "7" },
{ new Guid("1f745661-7e8c-457e-8c21-af328ebea6ef"), null, 0, "4" },
{ new Guid("2fb260a9-5c85-4d31-bd5f-9160b108a7d6"), null, 1, "6" },
{ new Guid("3aa4bd47-a91e-4b18-9915-e0f149be671d"), null, 3, "J" },
{ new Guid("3ccbf18b-d428-4b3c-9816-079ed93d50e0"), null, 0, "2" },
{ new Guid("3dd48e85-61c3-458c-8197-6b320b70412f"), null, 1, "3" },
{ new Guid("3df3eb49-4286-4335-b0fd-1f22324fc8da"), null, 0, "1" },
{ new Guid("423c23a4-f5b2-4676-9564-75714d289811"), null, 3, "6" },
{ new Guid("4776a685-7d6e-4bf5-a44a-075ef7109a52"), null, 0, "8" },
{ new Guid("48bd12de-6e41-4618-ab60-e6a96a63672a"), null, 0, "5" },
{ new Guid("4d0802db-85d1-4418-a1b7-86e87d00353f"), null, 2, "5" },
{ new Guid("5172a226-bc3d-4175-b5ae-c33981792ed1"), null, 2, "10" },
{ new Guid("54bd5f32-0c4f-454d-8e66-21ca14740157"), null, 2, "K" },
{ new Guid("5d3faa3f-2140-4a2d-837b-3089b28a8b7a"), null, 1, "8" },
{ new Guid("60be6c1a-9caa-4b67-b24c-ce31fe13b270"), null, 1, "10" },
{ new Guid("676f533a-c834-4b8b-9a82-618b25249add"), null, 2, "J" },
{ new Guid("6fa3e767-f549-4fe1-aaa0-2325481bf954"), null, 1, "J" },
{ new Guid("774c4661-8c70-4140-aa06-b77c81cdc6c9"), null, 1, "1" },
{ new Guid("775465f6-af76-4899-a4c0-87e9f87fde19"), null, 1, "5" },
{ new Guid("7a3d84d9-1ae2-49fc-83a4-4c9a9ba96f9e"), null, 0, "K" },
{ new Guid("7d07e71e-f955-4a86-ad02-71e1c2d2c888"), null, 3, "5" },
{ new Guid("7f7ea50b-4b9b-49b5-942f-82a5b62f6103"), null, 2, "6" },
{ new Guid("83641870-bb94-45de-8542-5d55ed369319"), null, 2, "9" },
{ new Guid("8c7ee0d6-da46-487c-9636-ce677fd14ba8"), null, 3, "2" },
{ new Guid("8e253b6c-27a7-4505-b29d-5a75478f8344"), null, 1, "Q" },
{ new Guid("92917f34-d2cc-4621-a175-d199cb4a2f99"), null, 2, "2" },
{ new Guid("999d24a8-1aca-47cb-a45b-4f3a436f2492"), null, 3, "7" },
{ new Guid("9f67ac4f-23eb-4b7d-baae-d8b3e4a91870"), null, 2, "Q" },
{ new Guid("a37baaf1-78f6-4cb9-a940-37d170b9c727"), null, 3, "1" },
{ new Guid("a8c3fff6-ac16-4e73-a322-6640304f4a1d"), null, 0, "Q" },
{ new Guid("ac12f0ae-331e-4603-bfd5-0e8f39c67291"), null, 1, "9" },
{ new Guid("ae7ea808-52f1-47f6-b68b-0ab596c47282"), null, 3, "10" },
{ new Guid("aec2f6dc-115b-4a67-8049-a20b2a99f9f0"), null, 0, "9" },
{ new Guid("b1971ee2-878a-4c6e-ae2b-606d41a34bc0"), null, 3, "8" },
{ new Guid("bf3353de-d18c-4857-bfef-d9dcda88d512"), null, 3, "9" },
{ new Guid("c0a3b138-0ad3-4384-9ec3-79e642d9972a"), null, 0, "6" },
{ new Guid("c2e04c69-7436-4b09-a269-8708e957af5a"), null, 3, "3" },
{ new Guid("c387869f-b4a9-4163-8cea-2b2c2fdeb6cc"), null, 3, "4" },
{ new Guid("cb23f13e-9e01-4c07-934b-91f83fe63754"), null, 1, "2" },
{ new Guid("d998e124-b28a-4fef-991a-9e135e3f61d5"), null, 2, "3" },
{ new Guid("dc9ab320-1c25-406f-ab25-962de5a22608"), null, 2, "1" },
{ new Guid("df67ffb9-4a54-4d76-b0ce-3582975b78c5"), null, 2, "4" },
{ new Guid("e182e163-badf-4455-89a4-4d5bb718359b"), null, 0, "3" },
{ new Guid("e95f7dc6-66e1-433a-a048-bb89a287112b"), null, 1, "4" },
{ new Guid("f2359dd3-13ee-492d-bd3e-0d53a568cd0a"), null, 3, "K" },
{ new Guid("f9146877-b413-4f92-aee6-f4ee93f8a164"), null, 0, "10" },
{ new Guid("fa8aebfb-6450-4e23-ba5d-49201011e8cc"), null, 1, "K" },
{ new Guid("ff232d8b-753c-4c4a-bd03-6ce9633eceb9"), null, 2, "7" }
});
migrationBuilder.CreateIndex(
name: "IX_AspNetRoleClaims_RoleId",
table: "AspNetRoleClaims",
column: "RoleId");
migrationBuilder.CreateIndex(
name: "RoleNameIndex",
table: "AspNetRoles",
column: "NormalizedName",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_AspNetUserClaims_UserId",
table: "AspNetUserClaims",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_AspNetUserLogins_UserId",
table: "AspNetUserLogins",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_AspNetUserRoles_RoleId",
table: "AspNetUserRoles",
column: "RoleId");
migrationBuilder.CreateIndex(
name: "EmailIndex",
table: "AspNetUsers",
column: "NormalizedEmail");
migrationBuilder.CreateIndex(
name: "UserNameIndex",
table: "AspNetUsers",
column: "NormalizedUserName",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_Deck_HandId",
table: "Deck",
column: "HandId");
migrationBuilder.CreateIndex(
name: "IX_Hand_UserId",
table: "Hand",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_Matches_PlayerOneId",
table: "Matches",
column: "PlayerOneId");
migrationBuilder.CreateIndex(
name: "IX_Matches_PlayerTwoId",
table: "Matches",
column: "PlayerTwoId");
migrationBuilder.CreateIndex(
name: "IX_PlayerCards_CardId",
table: "PlayerCards",
column: "CardId");
migrationBuilder.CreateIndex(
name: "IX_PlayerCards_PlayerId",
table: "PlayerCards",
column: "PlayerId");
migrationBuilder.CreateIndex(
name: "IX_Players_HandId",
table: "Players",
column: "HandId");
migrationBuilder.CreateIndex(
name: "IX_Players_UserId",
table: "Players",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "AspNetRoleClaims");
migrationBuilder.DropTable(
name: "AspNetUserClaims");
migrationBuilder.DropTable(
name: "AspNetUserLogins");
migrationBuilder.DropTable(
name: "AspNetUserRoles");
migrationBuilder.DropTable(
name: "AspNetUserTokens");
migrationBuilder.DropTable(
name: "Matches");
migrationBuilder.DropTable(
name: "PlayerCards");
migrationBuilder.DropTable(
name: "AspNetRoles");
migrationBuilder.DropTable(
name: "Deck");
migrationBuilder.DropTable(
name: "Players");
migrationBuilder.DropTable(
name: "Hand");
migrationBuilder.DropTable(
name: "AspNetUsers");
}
}
}