using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Project.Web.Migrations { /// public partial class vierte : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CATEGORY_NAME", schema: "dbo", table: "CATEGORY", type: "nvarchar(max)", nullable: false, oldClrType: typeof(int), oldType: "int"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CATEGORY_NAME", schema: "dbo", table: "CATEGORY", type: "int", nullable: false, oldClrType: typeof(string), oldType: "nvarchar(max)"); } } }