Skip to content

Commit

Permalink
Fix casing on High Potential ITT programme type in reporting db (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevJoy authored Oct 17, 2023
1 parent d830356 commit 841dec3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
IF EXISTS (select 1 from information_schema.tables where table_name = 'GlobalOptionSetMetadata')
BEGIN
update [dbo].[GlobalOptionSetMetadata] set LocalizedLabel = 'High potential ITT' where [Option] = 389040024 AND OptionSetName = 'dfeta_programmetype';
END
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<None Remove="Dqt\Services\DqtReporting\Migrations\0009_EvergreenMissingColumns2.sql" />
<None Remove="Dqt\Services\DqtReporting\Migrations\0010_SanctionDetailsLink.sql" />
<None Remove="Dqt\Services\DqtReporting\Migrations\0011_AddHighProfileProgrammeType.sql" />
<None Remove="Dqt\Services\DqtReporting\Migrations\0012_FixProgrammeTypeCasing.sql" />
</ItemGroup>

<ItemGroup>
Expand All @@ -32,6 +33,7 @@
<EmbeddedResource Include="Dqt\Services\DqtReporting\Migrations\0009_EvergreenMissingColumns2.sql" />
<EmbeddedResource Include="Dqt\Services\DqtReporting\Migrations\0010_SanctionDetailsLink.sql" />
<EmbeddedResource Include="Dqt\Services\DqtReporting\Migrations\0011_AddHighProfileProgrammeType.sql" />
<EmbeddedResource Include="Dqt\Services\DqtReporting\Migrations\0012_FixProgrammeTypeCasing.sql" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 841dec3

Please sign in to comment.