using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Web.Migrations { /// public partial class GeoAddedToSentNewsletterModel : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Geo", table: "SentNewsletterEamils", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "IpAddress", table: "SentNewsletterEamils", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Geo", table: "SentNewsletterEamils"); migrationBuilder.DropColumn( name: "IpAddress", table: "SentNewsletterEamils"); } } }