-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add field "NHS Real-Time-PCR" for Haemophilus (#168)
Addionally - Removed duplication on Isolate/Edit - Fixed minor bug where third field for FtsiEvaluation was not cleared on deselection
- Loading branch information
Showing
13 changed files
with
266 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
HaemophilusWeb/Migrations/202410201042173_Isolate_RealTimePcr.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
HaemophilusWeb/Migrations/202410201042173_Isolate_RealTimePcr.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace HaemophilusWeb.Migrations | ||
{ | ||
using System; | ||
using System.Data.Entity.Migrations; | ||
|
||
public partial class Isolate_RealTimePcr : DbMigration | ||
{ | ||
public override void Up() | ||
{ | ||
AddColumn("dbo.Isolates", "RealTimePcr", c => c.Int(nullable: false)); | ||
AddColumn("dbo.Isolates", "RealTimePcrResult", c => c.Int(nullable: false)); | ||
} | ||
|
||
public override void Down() | ||
{ | ||
DropColumn("dbo.Isolates", "RealTimePcrResult"); | ||
DropColumn("dbo.Isolates", "RealTimePcr"); | ||
} | ||
} | ||
} |
126 changes: 126 additions & 0 deletions
126
HaemophilusWeb/Migrations/202410201042173_Isolate_RealTimePcr.resx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.