Skip to content

Commit 92c3a06

Browse files
committed
Fix total digits for logitude column of osm_place_table
1 parent cee5d93 commit 92c3a06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

admin/admin_place.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
$q = 'CREATE TABLE IF NOT EXISTS `'.osm_place_table.'` (
4242
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
4343
`latitude` double(8,6) NOT NULL,
44-
`longitude` double(8,6) NOT NULL,
44+
`longitude` double(9,6) NOT NULL,
4545
`name` varchar(255) DEFAULT NULL,
4646
`parentId` mediumint(8),
4747
PRIMARY KEY (id)

0 commit comments

Comments
 (0)