Files
WhiteLagoon/WhiteLagoon.Infrastructure/Migrations/20230804001243_ModfiyNamesInVillaTable.cs
T
2025-05-20 11:46:50 -04:00

39 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace WhiteLagoon.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class ModfiyNamesInVillaTable : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "UpdatedDate",
table: "Villas",
newName: "Updated_Date");
migrationBuilder.RenameColumn(
name: "CreatedDate",
table: "Villas",
newName: "Created_Date");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Updated_Date",
table: "Villas",
newName: "UpdatedDate");
migrationBuilder.RenameColumn(
name: "Created_Date",
table: "Villas",
newName: "CreatedDate");
}
}
}