20260306011404_Migration_20260306091349.cs 678 Bytes
using Microsoft.EntityFrameworkCore.Migrations;

#nullable disable

namespace Rcs.Infrastructure.Migrations
{
    /// <inheritdoc />
    public partial class Migration_20260306091349 : Migration
    {
        /// <inheritdoc />
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.Sql(@"
ALTER TABLE robot_tasks
    ADD COLUMN IF NOT EXISTS shelf_code character varying(50);
");
        }

        /// <inheritdoc />
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.Sql(@"
ALTER TABLE robot_tasks
    DROP COLUMN IF EXISTS shelf_code;
");
        }
    }
}