2024-07-04 11:02:45 +05:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|