DD.WellWorkover.Cloud/AsbCloudDb/Migrations/20221226164803_editTable_PlannedTrajectory.cs

26 lines
696 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
2022-12-26 21:50:33 +05:00
#nullable disable
namespace AsbCloudDb.Migrations
{
public partial class editTable_PlannedTrajectory : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "load_date",
table: "t_planned_trajectory",
newName: "update_date");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "update_date",
table: "t_planned_trajectory",
newName: "load_date");
}
}
}