SurveyVista/Web/Migrations/20240510081324_GeoAddedToSentNewsletterModel.cs
2024-05-10 20:37:42 +02:00

38 lines
1.1 KiB
C#

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