33 lines
920 B
C#
33 lines
920 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
||
#nullable disable
|
||
|
||
namespace PARR.DAL.Migrations
|
||
{
|
||
/// <inheritdoc />
|
||
public partial class TblSettingUpdPrefix : Migration
|
||
{
|
||
/// <inheritdoc />
|
||
protected override void Up(MigrationBuilder migrationBuilder)
|
||
{
|
||
migrationBuilder.UpdateData(
|
||
table: "Settings",
|
||
keyColumn: "Name",
|
||
keyValue: "TemplatePrefixName",
|
||
column: "Value",
|
||
value: "ПАРР-ДВС-ПТК");
|
||
}
|
||
|
||
/// <inheritdoc />
|
||
protected override void Down(MigrationBuilder migrationBuilder)
|
||
{
|
||
migrationBuilder.UpdateData(
|
||
table: "Settings",
|
||
keyColumn: "Name",
|
||
keyValue: "TemplatePrefixName",
|
||
column: "Value",
|
||
value: "ПАРР-ДВС-ПТК__");
|
||
}
|
||
}
|
||
}
|