Files
Backend-Api/CompanyManagment.EFCore/Migrations/20250305133448_addLateToWorkToCustomizeCheckout.cs
2025-03-05 21:17:38 +03:30

43 lines
1.2 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CompanyManagment.EFCore.Migrations
{
/// <inheritdoc />
public partial class addLateToWorkToCustomizeCheckout : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "LateToWorkValue",
table: "CustomizeCheckoutTemps",
type: "nvarchar(30)",
maxLength: 30,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn<string>(
name: "LateToWorkValue",
table: "CustomizeCheckouts",
type: "nvarchar(30)",
maxLength: 30,
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LateToWorkValue",
table: "CustomizeCheckoutTemps");
migrationBuilder.DropColumn(
name: "LateToWorkValue",
table: "CustomizeCheckouts");
}
}
}