| 1234567891011121314151617181920212223242526 | using Microsoft.EntityFrameworkCore.Migrations;#nullable disablenamespace WCS.Service.Migrations{    public partial class _15 : Migration    {        protected override void Up(MigrationBuilder migrationBuilder)        {            migrationBuilder.AddColumn<short>(                name: "RES6",                table: "WCS_RGV521",                type: "smallint",                nullable: false,                defaultValue: (short)0);        }        protected override void Down(MigrationBuilder migrationBuilder)        {            migrationBuilder.DropColumn(                name: "RES6",                table: "WCS_RGV521");        }    }}
 |