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