29 lines
797 B
C#
29 lines
797 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace LiteCharms.Infrastructure.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class CorrectedAttributionHashColumnOnLead : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "AttribusionHash",
|
|
table: "Lead",
|
|
newName: "AttributionHash");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "AttributionHash",
|
|
table: "Lead",
|
|
newName: "AttribusionHash");
|
|
}
|
|
}
|
|
}
|