Skip to content

Creating a migration for updated Installers

Mike Peterson edited this page Feb 3, 2015 · 3 revisions

This is the format to use when updating the new download location for installers. Replace [VERSION] with the version. For example: 1.3.0

// update new location of checkscanner installer
Sql( @"UPDATE [AttributeValue] 
SET [Value] = 'http://storage.rockrms.com/externalapplications/sparkdevnetwork/checkscanner/[VERSION]/checkscanner.exe' 
WHERE [Guid] = '82960DBD-2EAA-47DF-B9AC-86F7A2FCA180'" );

// update new location of jobscheduler installer
Sql( @"UPDATE [AttributeValue] 
SET [Value] = 'http://storage.rockrms.com/externalapplications/sparkdevnetwork/jobscheduler/[VERSION]/jobscheduler.exe'
WHERE [Guid] = '7FBC4397-6BFD-451D-A6B9-83D7B7265641'" );

// update new location of statementgenerator installer
Sql( @"UPDATE [AttributeValue] 
SET [Value] = 'http://storage.rockrms.com/externalapplications/sparkdevnetwork/statementgenerator/[VERSION]/statementgenerator.exe' 
WHERE [Guid] = '10BE2E03-7827-41B5-8CB2-DEB473EA107A'" );

// update new location of checkinclient installer
Sql( @"UPDATE [AttributeValue] 
SET [Value] = 'http://storage.rockrms.com/externalapplications/sparkdevnetwork/windowscheckin/[VERSION]/checkinclient.exe'
WHERE [Guid] = '7ADC1B5B-D374-4B77-9DE1-4D788B572A10'" );
Clone this wiki locally