forked from ddrilling/AsbCloudServer
26 lines
699 B
C#
26 lines
699 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|