Updating the size of the Longitude field

To address https://github.com/ZoneMinder/zoneminder/issues/3311
This commit is contained in:
Kendric Evans 2021-07-02 16:11:34 -06:00
parent 415dce6548
commit 7e8a064725
2 changed files with 2 additions and 1 deletions

View File

@ -536,7 +536,7 @@ CREATE TABLE `Monitors` (
`ZoneCount` TINYINT NOT NULL DEFAULT 0,
`Refresh` int(10) unsigned default NULL,
`Latitude` DECIMAL(10,8),
`Longitude` DECIMAL(10,8),
`Longitude` DECIMAL(11,8),
`RTSPServer` BOOLEAN NOT NULL DEFAULT FALSE,
`RTSPStreamName` varchar(255) NOT NULL default '',
`Importance` enum('Not','Less','Normal'),

1
db/zm_update-1.35.29.sql Normal file
View File

@ -0,0 +1 @@
ALTER TABLE `Monitors` MODIFY `Longitude` DECIMAL(11,8);