using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LiteCharms.Infrastructure.Database.Migrations { /// public partial class GeneralisedLead : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "GoogleClickId", table: "Lead", newName: "Source"); migrationBuilder.AddColumn( name: "ClickId", table: "Lead", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ClickId", table: "Lead"); migrationBuilder.RenameColumn( name: "Source", table: "Lead", newName: "GoogleClickId"); } } }