Skip to content

Commit 030a385

Browse files
authored
Merge pull request #3242 from TechnologyEnhancedLearning/Develop/Fixes/TD-5545-UpdateNotificationsTable
TD-5545 Update Notifications Table
2 parents e3d3475 + a6694a1 commit 030a385

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
namespace DigitalLearningSolutions.Data.Migrations
2+
{
3+
using FluentMigrator;
4+
5+
[Migration(202504290900)]
6+
public class UpdateNotifications : ForwardOnlyMigration
7+
{
8+
public override void Up()
9+
{
10+
Execute.Sql(@$"UPDATE Notifications SET NotificationName = 'Completed course follow-up feedback requests' where NotificationID = 13");
11+
}
12+
13+
}
14+
}

0 commit comments

Comments
 (0)