Scale up BatteryLevel

This commit is contained in:
2020-04-15 20:39:45 -04:00
parent cb18e47765
commit f1ad2ba441

View File

@@ -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);