SPMS_API/SPMS.Infrastructure/Migrations/20260211010030_AddWebhookEventsToService.cs
2026-02-11 10:03:03 +09:00

30 lines
810 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace SPMS.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class AddWebhookEventsToService : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "WebhookEvents",
table: "Service",
type: "longtext",
nullable: true)
.Annotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "WebhookEvents",
table: "Service");
}
}
}