39 lines
1.1 KiB
C#
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");
|
|
}
|
|
}
|
|
}
|