mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-13 17:22:54 -05:00
Scale up BatteryLevel
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
Rain decimal(2, 2) NOT NULL,
|
||||
Pressure decimal(8, 2) NOT NULL,
|
||||
PressureTemperature decimal(4, 1) NOT NULL,
|
||||
BatteryLevel decimal(3, 2) NOT NULL,
|
||||
BatteryLevel decimal(4, 2) NOT NULL,
|
||||
LightLevel decimal(3, 2) NOT NULL,
|
||||
Latitude decimal(9, 6) NOT NULL,
|
||||
Longitude decimal(9, 6) NOT NULL,
|
||||
@@ -20,4 +20,6 @@
|
||||
GpsTimestamp datetimeoffset NOT NULL
|
||||
);
|
||||
|
||||
ALTER TABLE Reading ALTER COLUMN Rain decimal(3, 3);
|
||||
ALTER TABLE Reading ALTER COLUMN Rain decimal(3, 3);
|
||||
|
||||
ALTER TABLE Reading ALTER COLUMN BatteryLevel decimal(4, 2);
|
||||
Reference in New Issue
Block a user