84 lines
2.8 KiB
C#
84 lines
2.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PowderCoating.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class FixCustomerEmailUniqueIndex : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Customers_Email",
|
|
table: "Customers");
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 1,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 17, 1, 53, 11, 919, DateTimeKind.Utc).AddTicks(829));
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 2,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 17, 1, 53, 11, 919, DateTimeKind.Utc).AddTicks(834));
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 3,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 17, 1, 53, 11, 919, DateTimeKind.Utc).AddTicks(836));
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Customers_CompanyId_Email",
|
|
table: "Customers",
|
|
columns: new[] { "CompanyId", "Email" },
|
|
unique: true,
|
|
filter: "[Email] IS NOT NULL");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Customers_CompanyId_Email",
|
|
table: "Customers");
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 1,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 16, 1, 11, 38, 601, DateTimeKind.Utc).AddTicks(9819));
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 2,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 16, 1, 11, 38, 601, DateTimeKind.Utc).AddTicks(9882));
|
|
|
|
migrationBuilder.UpdateData(
|
|
table: "PricingTiers",
|
|
keyColumn: "Id",
|
|
keyValue: 3,
|
|
column: "CreatedAt",
|
|
value: new DateTime(2026, 2, 16, 1, 11, 38, 601, DateTimeKind.Utc).AddTicks(9883));
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Customers_Email",
|
|
table: "Customers",
|
|
column: "Email",
|
|
unique: true,
|
|
filter: "[Email] IS NOT NULL");
|
|
}
|
|
}
|
|
}
|