using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace UserManagement.API.Migrations { /// public partial class PasswordHash : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PASSWORD_HASH", table: "Users", type: "nvarchar(max)", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PASSWORD_HASH", table: "Users"); } } }