29 lines
808 B
C#
29 lines
808 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class TblRobotConfiguratinosUpd : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "LastStatusUpdated",
|
|
table: "RobotConfigurations",
|
|
newName: "LastRobotStatusUpdated");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "LastRobotStatusUpdated",
|
|
table: "RobotConfigurations",
|
|
newName: "LastStatusUpdated");
|
|
}
|
|
}
|
|
}
|