| 12345678910111213141516171819202122232425262728293031 | using Microsoft.EntityFrameworkCore.Migrations;#nullable disablenamespace WCS.Service.Migrations{    public partial class _14 : Migration    {        protected override void Up(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<float>(                name: "Position",                table: "WCS_RGV521",                type: "real",                nullable: false,                oldClrType: typeof(int),                oldType: "int");        }        protected override void Down(MigrationBuilder migrationBuilder)        {            migrationBuilder.AlterColumn<int>(                name: "Position",                table: "WCS_RGV521",                type: "int",                nullable: false,                oldClrType: typeof(float),                oldType: "real");        }    }}
 |