File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
WebAPI/LearningHub.Nhs.Database
Scripts/Post-Deploy/Scripts Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 550550 <Build Include =" Stored Procedures\Hierarchy\HierarchyNewResourceReferenceForReferedCatalogue.sql" />
551551 <Build Include =" Stored Procedures\Hierarchy\HierarchyEditCreateNodeReference.sql" />
552552 <Build Include =" Stored Procedures\Hierarchy\HierarchyEditCreateResourceReference.sql" />
553+ <None Include =" Scripts\Post-Deploy\Scripts\PPSXFileType.sql" />
553554 </ItemGroup >
554555 <ItemGroup >
555556 <None Include =" Scripts\Pre-Deploy\Scripts\Card5766_AuthorTableChanges.PreDeployment.sql" />
Original file line number Diff line number Diff line change 1+ IF NOT EXISTS (SELECT Id FROM [resources].[FileType] where Extension = ' ppsx' )
2+ BEGIN
3+ INSERT INTO [resources].[FileType]
4+ (Id,
5+ [DefaultResourceTypeId]
6+ ,[Name]
7+ ,[Description]
8+ ,[Extension]
9+ ,[Icon]
10+ ,[NotAllowed]
11+ ,[Deleted]
12+ ,[CreateUserId]
13+ ,[CreateDate]
14+ ,[AmendUserId]
15+ ,[AmendDate])
16+ VALUES
17+ (70 ,
18+ 9
19+ ,' PowerPoint Open XML Slide Show'
20+ ,' PowerPoint Open XML Slide Show'
21+ ,' ppsx'
22+ ,' a-mppoint-icon.svg'
23+ ,0
24+ ,0
25+ ,57541
26+ ,SYSDATETIMEOFFSET ()
27+ ,57541
28+ ,SYSDATETIMEOFFSET ())
29+ END
30+ GO
31+
You can’t perform that action at this time.
0 commit comments