33 lines
893 B
C#
33 lines
893 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class tblRobotHistoryLavelFixInformation : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "RobotHistoryLevels",
|
|
keyColumn: "Level",
|
|
keyValue: 5,
|
|
column: "Name",
|
|
value: "Information");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "RobotHistoryLevels",
|
|
keyColumn: "Level",
|
|
keyValue: 5,
|
|
column: "Name",
|
|
value: "Inforamtion");
|
|
}
|
|
}
|
|
}
|