marco.pms.api/Marco.Pms.DataAccess/Migrations/20250424060618_Made_ComentId_Nullable_In_TicketAttachment.cs

65 lines
2.3 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Marco.Pms.DataAccess.Migrations
{
/// <inheritdoc />
public partial class Made_ComentId_Nullable_In_TicketAttachment : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_TicketAttachments_TicketComments_CommentId",
table: "TicketAttachments");
migrationBuilder.AlterColumn<Guid>(
name: "CommentId",
table: "TicketAttachments",
type: "char(36)",
nullable: true,
collation: "ascii_general_ci",
oldClrType: typeof(Guid),
oldType: "char(36)")
.OldAnnotation("Relational:Collation", "ascii_general_ci");
migrationBuilder.AddForeignKey(
name: "FK_TicketAttachments_TicketComments_CommentId",
table: "TicketAttachments",
column: "CommentId",
principalTable: "TicketComments",
principalColumn: "Id");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_TicketAttachments_TicketComments_CommentId",
table: "TicketAttachments");
migrationBuilder.AlterColumn<Guid>(
name: "CommentId",
table: "TicketAttachments",
type: "char(36)",
nullable: false,
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"),
collation: "ascii_general_ci",
oldClrType: typeof(Guid),
oldType: "char(36)",
oldNullable: true)
.OldAnnotation("Relational:Collation", "ascii_general_ci");
migrationBuilder.AddForeignKey(
name: "FK_TicketAttachments_TicketComments_CommentId",
table: "TicketAttachments",
column: "CommentId",
principalTable: "TicketComments",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
}
}
}