This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
oqtane.framework-not-mirrored/Oqtane.Server/Migrations/01000101_AddAdditionColumnToNotifications.cs

34 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Oqtane.Migrations.EntityBuilders;
using Oqtane.Repository;
namespace Oqtane.Migrations
{
[DbContext(typeof(TenantDBContext))]
[Migration("Tenant.01.00.01.01")]
public class AddAdditionColumnToNotifications : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
//Add Column to Notification table
var notificationEntityBuilder = new NotificationEntityBuilder(migrationBuilder);
notificationEntityBuilder.AddDateTimeColumn("SendOn", true);
migrationBuilder.Sql(
@"
UPDATE Notification
SET SendOn = CreatedOn
WHERE SendOn IS NULL;
");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
//Drop Column from Notification table
var notificationEntityBuilder = new NotificationEntityBuilder(migrationBuilder);
notificationEntityBuilder.DropColumn("SendOn");
}
}
}