YCPRadioTelescope / RT-Contracts

Back-end architecture for the Radio Telescope Senior Software Design Project for the 2018-2019 academic year
3 stars 1 forks source link

Update temperature table's temperature column to be float(5,2) #110

Closed pdnelson closed 3 years ago

pdnelson commented 3 years ago

Presently, the temperature table's temperature column is set to be float(4,3), which means the temperature's max is 9.999. This is problematic because when a temperature is saved (and exceeds 9.999), it is set to 9.999.

With the change of making the temperature column a float(5,2), the temperature's max would be 999.99, allowing a more-useful range of temperatures.