We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3d3475 + a6694a1 commit 030a385Copy full SHA for 030a385
DigitalLearningSolutions.Data.Migrations/202504290900_UpdateNotifications.cs
@@ -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