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