10 lines
249 B
MySQL
10 lines
249 B
MySQL
|
|
INSERT INTO [dbo].[Settings]
|
|||
|
|
([PropertyId]
|
|||
|
|
,[PropertyType]
|
|||
|
|
,[PropertyValue]
|
|||
|
|
,[UserId])
|
|||
|
|
VALUES
|
|||
|
|
('EnableClockSourceSelect'
|
|||
|
|
,2
|
|||
|
|
,'False'
|
|||
|
|
,'SYSTEM');
|