diff options
Diffstat (limited to 'engine/schema/upgrades/2008112501.sql')
| -rw-r--r-- | engine/schema/upgrades/2008112501.sql | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/engine/schema/upgrades/2008112501.sql b/engine/schema/upgrades/2008112501.sql new file mode 100644 index 000000000..41e41f93e --- /dev/null +++ b/engine/schema/upgrades/2008112501.sql @@ -0,0 +1,10 @@ +CREATE TABLE IF NOT EXISTS `prefix_geocode_cache` ( +	id     int(11)     auto_increment, +	location varchar(128), +	`lat`    varchar(20), +	`long`   varchar(20), +	 +	PRIMARY KEY (`id`), +    KEY `location` (`location`) +	 +) ENGINE=MEMORY;
\ No newline at end of file | 
