Files
CMS/src/CMSMicroservice.Infrastructure/Persistence/Migrations/20251112201503_u06.cs
2025-11-13 21:41:27 +03:30

31 lines
816 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
{
/// <inheritdoc />
public partial class u06 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "HashPassword",
schema: "CMS",
table: "Users",
type: "nvarchar(max)",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "HashPassword",
schema: "CMS",
table: "Users");
}
}
}