using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FlexJobApi.Database.Migrations.Migrations { /// public partial class UpdateUser0808002 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Name", table: "User", type: "nvarchar(32)", maxLength: 32, nullable: true, oldClrType: typeof(string), oldType: "nvarchar(32)", oldMaxLength: 32); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Name", table: "User", type: "nvarchar(32)", maxLength: 32, nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "nvarchar(32)", oldMaxLength: 32, oldNullable: true); } } }