Files
DP44/DataPRO/Modules/Database/DatabaseMigrationScripts/.svn/pristine/0f/0f41713587c20604cc050aa25165ef97e42a411f.svn-base

6 lines
622 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
-- We check for ChannelTypes = '0,0,0,0,0,0' because that's the case where a SLICE6Air
-- has not already been rediscovered in 4.0 (which would result in '0,0,0,0,0,0,5,6').
INSERT INTO [dbo].[DASChannels]
([DASId], [ChannelIdx], [SupportedBridges], [SupportedExcitations], [DASDisplayOrder], [LocalOnly], [SupportedDigitalInputModes], [SupportedSquibFireModes], [SupportedDigitalOutputModes], [ModuleSerialNumber], [ModuleArrayIndex])
(SELECT DASId, 7, 1024, 1, -1, 0, 0, 0, 0, 'S6A-StreamOut1', 3 FROM [dbo].[DAS] WHERE Type = '36' AND Position <> 'Prototype' AND ChannelTypes = '0,0,0,0,0,0' GROUP BY DASId)