126 lines
4 KiB
C#
126 lines
4 KiB
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
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_Characters_Name",
|
|
table: "Characters",
|
|
column: "Name",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Accounts_Username",
|
|
table: "Accounts",
|
|
column: "Username",
|
|
unique: true);
|
|
|
|
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.DropIndex(
|
|
name: "IX_Characters_Name",
|
|
table: "Characters");
|
|
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Accounts_Username",
|
|
table: "Accounts");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "GuildId",
|
|
table: "Characters");
|
|
}
|
|
}
|