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.
1 parent 4603e92 commit 378b7b6Copy full SHA for 378b7b6
DigitalLearningSolutions.Data.Migrations/202508190845_AddSelfAssessmentProcessAgreed .cs
@@ -0,0 +1,18 @@
1
+namespace DigitalLearningSolutions.Data.Migrations
2
+{
3
+ using FluentMigrator;
4
+
5
+ [Migration(202508190845)]
6
+ public class AddSelfAssessmentProcessAgreed : Migration
7
+ {
8
+ public override void Up()
9
10
+ Alter.Table("CandidateAssessments").AddColumn("SelfAssessmentProcessAgreed").AsDateTime().Nullable();
11
+ }
12
13
+ public override void Down()
14
15
+ Delete.Column("SelfAssessmentProcessAgreed").FromTable("CandidateAssessments");
16
17
18
+}
0 commit comments