| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | using Microsoft.EntityFrameworkCore.Migrations;#nullable disablenamespace WCS.Service.Migrations{    public partial class _10 : Migration    {        protected override void Up(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<short>(                name: "RES4_2",                table: "WCS_SRM520",                type: "smallint",                nullable: false,                oldClrType: typeof(byte),                oldType: "tinyint");            migrationBuilder.AlterColumn<short>(                name: "RES4_1",                table: "WCS_SRM520",                type: "smallint",                nullable: false,                oldClrType: typeof(byte),                oldType: "tinyint");        }        protected override void Down(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<byte>(                name: "RES4_2",                table: "WCS_SRM520",                type: "tinyint",                nullable: false,                oldClrType: typeof(short),                oldType: "smallint");            migrationBuilder.AlterColumn<byte>(                name: "RES4_1",                table: "WCS_SRM520",                type: "tinyint",                nullable: false,                oldClrType: typeof(short),                oldType: "smallint");        }    }}
 |