Timothy Schenk
4b0840b5b9
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 25s
Build, Package and Push Images / sonarqube (push) Has been skipped
Build, Package and Push Images / sbom-scan (push) Successful in 34s
Build, Package and Push Images / container-build (push) Successful in 1m15s
Build, Package and Push Images / container-sbom-scan (push) Successful in 37s
104 lines
3.4 KiB
C#
104 lines
3.4 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Server.DB.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class AddGuildData : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<Guid>(
|
|
name: "GuildId",
|
|
table: "Characters",
|
|
type: "uuid",
|
|
nullable: false,
|
|
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"));
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Guild",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: true),
|
|
Notice = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Guild", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "GuildMember",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
CharacterId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GuildId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Rank = table.Column<byte>(type: "smallint", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_GuildMember", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_GuildMember_Characters_CharacterId",
|
|
column: x => x.CharacterId,
|
|
principalTable: "Characters",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_GuildMember_Guild_GuildId",
|
|
column: x => x.GuildId,
|
|
principalTable: "Guild",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Characters_GuildId",
|
|
table: "Characters",
|
|
column: "GuildId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_GuildMember_CharacterId",
|
|
table: "GuildMember",
|
|
column: "CharacterId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_GuildMember_GuildId",
|
|
table: "GuildMember",
|
|
column: "GuildId");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_Characters_Guild_GuildId",
|
|
table: "Characters",
|
|
column: "GuildId",
|
|
principalTable: "Guild",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Characters_Guild_GuildId",
|
|
table: "Characters");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "GuildMember");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Guild");
|
|
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Characters_GuildId",
|
|
table: "Characters");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "GuildId",
|
|
table: "Characters");
|
|
}
|
|
}
|