| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | using Microsoft.EntityFrameworkCore.Migrations;#nullable disablenamespace WCS.Service.Migrations{    public partial class _11 : Migration    {        protected override void Up(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<int>(                name: "ForkStatus_2",                table: "WCS_SRM521",                type: "int",                nullable: false,                oldClrType: typeof(long),                oldType: "bigint");            migrationBuilder.AlterColumn<int>(                name: "ForkStatus_1",                table: "WCS_SRM521",                type: "int",                nullable: false,                oldClrType: typeof(long),                oldType: "bigint");        }        protected override void Down(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<long>(                name: "ForkStatus_2",                table: "WCS_SRM521",                type: "bigint",                nullable: false,                oldClrType: typeof(int),                oldType: "int");            migrationBuilder.AlterColumn<long>(                name: "ForkStatus_1",                table: "WCS_SRM521",                type: "bigint",                nullable: false,                oldClrType: typeof(int),                oldType: "int");        }    }}
 |