Files
PowderCoatingLogix/src/PowderCoating.Infrastructure/Migrations/20260417170543_DropItemIsCoatingColumn.cs
T
2026-04-23 21:38:24 -04:00

73 lines
2.4 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PowderCoating.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class DropItemIsCoatingColumn : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsCoating",
table: "InventoryItems");
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 1,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 17, 5, 40, 37, DateTimeKind.Utc).AddTicks(7587));
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 2,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 17, 5, 40, 37, DateTimeKind.Utc).AddTicks(7592));
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 3,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 17, 5, 40, 37, DateTimeKind.Utc).AddTicks(7594));
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsCoating",
table: "InventoryItems",
type: "bit",
nullable: false,
defaultValue: false);
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 1,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 16, 6, 41, 332, DateTimeKind.Utc).AddTicks(6769));
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 2,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 16, 6, 41, 332, DateTimeKind.Utc).AddTicks(6775));
migrationBuilder.UpdateData(
table: "PricingTiers",
keyColumn: "Id",
keyValue: 3,
column: "CreatedAt",
value: new DateTime(2026, 4, 17, 16, 6, 41, 332, DateTimeKind.Utc).AddTicks(6776));
}
}
}