forked from ddrilling/AsbCloudServer
33 lines
997 B
C#
33 lines
997 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace AsbCloudDb.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class Update_WellOperationName : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.UpdateData(
|
|||
|
table: "t_well_operation_category",
|
|||
|
keyColumn: "id",
|
|||
|
keyValue: 5089,
|
|||
|
column: "name",
|
|||
|
value: "Спуск КО на транспортной колонне");
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.UpdateData(
|
|||
|
table: "t_well_operation_category",
|
|||
|
keyColumn: "id",
|
|||
|
keyValue: 5089,
|
|||
|
column: "name",
|
|||
|
value: "Спуск КО на транспотрной колонне");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|