mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-16 18:47:40 -05:00
Scale up BatteryLevel
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
Rain decimal(2, 2) NOT NULL,
|
Rain decimal(2, 2) NOT NULL,
|
||||||
Pressure decimal(8, 2) NOT NULL,
|
Pressure decimal(8, 2) NOT NULL,
|
||||||
PressureTemperature decimal(4, 1) 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,
|
LightLevel decimal(3, 2) NOT NULL,
|
||||||
Latitude decimal(9, 6) NOT NULL,
|
Latitude decimal(9, 6) NOT NULL,
|
||||||
Longitude decimal(9, 6) NOT NULL,
|
Longitude decimal(9, 6) NOT NULL,
|
||||||
@@ -21,3 +21,5 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
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