Skip to content

Commit

Permalink
Fixed remaining installation issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
WillStrohl committed Sep 7, 2015
1 parent 2c12bee commit 8167eca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ Release Notes:
*/

IF NOT EXISTS (SELECT 1 FROM {databaseOwner}[syscolumns] c JOIN {databaseOwner}[sysobjects] o ON c.[id] = o.[id] WHERE c.[name] = N'custom_properties' AND o.[name] = '{objectQualifier}wns_inj_injection')
BEGIN
ALTER TABLE {databaseOwner}[{objectQualifier}wns_inj_injection]
ADD [custom_properties] NVARCHAR(MAX) NULL;
GO

UPDATE {databaseOwner}[{objectQualifier}wns_inj_injection]
SET [custom_properties] = N'[]'
WHERE
[custom_properties] = N'' OR
[custom_properties] IS NULL;
END
UPDATE {databaseOwner}[{objectQualifier}wns_inj_injection]
SET [custom_properties] = N'[]'
WHERE
[custom_properties] = N'' OR
[custom_properties] IS NULL;
GO

IF NOT OBJECT_ID(N'{databaseOwner}{objectQualifier}wns_inj_AddInjectionContent') IS NULL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@
<Content Include="App_LocalResources\ViewInjection.ascx.resx" />
<Content Include="EditInjections.ascx" />
<Content Include="License.txt" />
<Content Include="Module.build" />
<Content Include="Module.build">
<SubType>Designer</SubType>
</Content>
<Content Include="Module.css" />
<Content Include="Providers\DataProviders\SqlDataProvider\01.00.00.SqlDataProvider" />
<Content Include="Providers\DataProviders\SqlDataProvider\01.00.01.SqlDataProvider" />
Expand Down
2 changes: 1 addition & 1 deletion Modules/WillStrohl.Injection/releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h3>Version 02.00.00</h3>
<p><strong>Date Released:</strong> 09/06/2015</p>
<ul>
<li>Feature: Ability to specify and use CRM features for JavaScript/CSS files</li>
<li>Feature: Specify and use CRM features for JavaScript/CSS files</li>
<li>Feature: Display auditing history for injections</li>
<li>Feature: Display injection type in grid listing</li>
<li>Feature: Converted project to C#</li>
Expand Down

0 comments on commit 8167eca

Please sign in to comment.