feature 3009: Add 'latitude' and 'longitude' fields in images table

git-svn-id: http://piwigo.org/svn/trunk@25801 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100
2013-12-06 19:14:44 +00:00
parent 1e69be0b7a
commit 4fca6a259e
4 changed files with 125 additions and 4 deletions
+5 -2
View File
@@ -196,13 +196,16 @@ CREATE TABLE `piwigo_images` (
`level` tinyint unsigned NOT NULL default '0',
`md5sum` char(32) default NULL,
`added_by` smallint(5) NOT NULL default '0',
`rotation` tinyint unsigned default null,
`rotation` tinyint unsigned default NULL,
`latitude` double(8, 6) default NULL,
`longitude` double(9, 6) default NULL,
PRIMARY KEY (`id`),
KEY `images_i2` (`date_available`),
KEY `images_i3` (`rating_score`),
KEY `images_i4` (`hit`),
KEY `images_i5` (`date_creation`),
KEY `images_i1` (`storage_category_id`)
KEY `images_i1` (`storage_category_id`),
KEY `images_i6` (`latitude`)
) ENGINE=MyISAM;
--