Files
DP44/DataPRO/Modules/Database/DatabaseMigrationScripts/.svn/pristine/f3/f3b3fe79e8d8b869b5c2e54f803010a81863448a.svn-base

6 lines
615 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, 6, 512, 1, -1, 0, 0, 0, 0, 'S6A-Uart1', 2 FROM [dbo].[DAS] WHERE Type = '36' AND Position <> 'Prototype' AND ChannelTypes = '0,0,0,0,0,0' GROUP BY DASId)