31 lines
822 B
C#
31 lines
822 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Brizco.Repository.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class editUserNationalId : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "InternationalId",
|
|
schema: "public",
|
|
table: "Users",
|
|
newName: "NationalId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "NationalId",
|
|
schema: "public",
|
|
table: "Users",
|
|
newName: "InternationalId");
|
|
}
|
|
}
|
|
}
|