Files
DP44/DataPRO_sql/dbo.Insert_DefaultProperties_CalibrationBehavior.sql

15 lines
266 B
MySQL
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
USE [DataPRO]
GO
INSERT INTO [dbo].[DefaultProperties]
([PropertyId]
,[PropertyName]
,[DefaultValue])
VALUES
(306
,'DefaultSensorCalibrationBehavior'
,'NonLinearIfAvailable')
GO