33 lines
909 B
C#
33 lines
909 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class tblSettingsUpdOrderSearchDeltaDate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "Settings",
|
|
keyColumn: "Name",
|
|
keyValue: "OrderSearchDeltaDate",
|
|
column: "Value",
|
|
value: "01:00:00");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "Settings",
|
|
keyColumn: "Name",
|
|
keyValue: "OrderSearchDeltaDate",
|
|
column: "Value",
|
|
value: "01:30:00");
|
|
}
|
|
}
|
|
}
|