15 lines
266 B
MySQL
15 lines
266 B
MySQL
|
|
USE [DataPRO]
|
||
|
|
GO
|
||
|
|
|
||
|
|
INSERT INTO [dbo].[DefaultProperties]
|
||
|
|
([PropertyId]
|
||
|
|
,[PropertyName]
|
||
|
|
,[DefaultValue])
|
||
|
|
VALUES
|
||
|
|
(306
|
||
|
|
,'DefaultSensorCalibrationBehavior'
|
||
|
|
,'NonLinearIfAvailable')
|
||
|
|
GO
|
||
|
|
|
||
|
|
|