Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: VigersRay <60344369+VigersRay@users.noreply.github.com> Co-authored-by: Vigers Ray <vigersray@gmail.com>
96 lines
4.5 KiB
C#
96 lines
4.5 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace Content.Server.Database.Migrations.Postgres
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class MentorHelp : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "mentor_help_tickets",
|
|
columns: table => new
|
|
{
|
|
mentor_help_tickets_id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
player_id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
assigned_to_user_id = table.Column<Guid>(type: "uuid", nullable: true),
|
|
subject = table.Column<string>(type: "character varying(512)", maxLength: 512, nullable: false),
|
|
status = table.Column<int>(type: "integer", nullable: false),
|
|
created_at = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
|
updated_at = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
|
closed_at = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
|
closed_by_user_id = table.Column<Guid>(type: "uuid", nullable: true),
|
|
round_id = table.Column<int>(type: "integer", nullable: true),
|
|
server_id = table.Column<int>(type: "integer", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_mentor_help_tickets", x => x.mentor_help_tickets_id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "mentor_help_messages",
|
|
columns: table => new
|
|
{
|
|
mentor_help_messages_id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
ticket_id = table.Column<int>(type: "integer", nullable: false),
|
|
sender_user_id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
message = table.Column<string>(type: "character varying(4096)", maxLength: 4096, nullable: false),
|
|
sent_at = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
|
is_staff_only = table.Column<bool>(type: "boolean", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_mentor_help_messages", x => x.mentor_help_messages_id);
|
|
table.ForeignKey(
|
|
name: "FK_mentor_help_messages_mentor_help_tickets_ticket_id",
|
|
column: x => x.ticket_id,
|
|
principalTable: "mentor_help_tickets",
|
|
principalColumn: "mentor_help_tickets_id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mentor_help_messages_sent_at",
|
|
table: "mentor_help_messages",
|
|
column: "sent_at");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mentor_help_messages_ticket_id",
|
|
table: "mentor_help_messages",
|
|
column: "ticket_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mentor_help_tickets_assigned_to_user_id",
|
|
table: "mentor_help_tickets",
|
|
column: "assigned_to_user_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mentor_help_tickets_player_id",
|
|
table: "mentor_help_tickets",
|
|
column: "player_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mentor_help_tickets_status",
|
|
table: "mentor_help_tickets",
|
|
column: "status");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "mentor_help_messages");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "mentor_help_tickets");
|
|
}
|
|
}
|
|
}
|