20260306022000_AddRobotTaskHistoryContainerIdHotfix.cs
821 Bytes
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Rcs.Infrastructure.DB.MsSql;
#nullable disable
namespace Rcs.Infrastructure.Migrations
{
[DbContext(typeof(AppDbContext))]
[Migration("20260306022000_AddRobotTaskHistoryContainerIdHotfix")]
public class AddRobotTaskHistoryContainerIdHotfix : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(@"
ALTER TABLE robot_task_histories
ADD COLUMN IF NOT EXISTS container_id character varying(50);
");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(@"
ALTER TABLE robot_task_histories
DROP COLUMN IF EXISTS container_id;
");
}
}
}