Skip to content

Commit

Permalink
Merge remote branch 'mikenz/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Minnee committed Feb 26, 2011
2 parents 7ce39ac + d49c08e commit d705c8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/ccnzgeocode/libraries/ccnzgeocode_install.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public function run_install()
$this->db->query('CREATE TABLE IF NOT EXISTS `' . Kohana::config('database.default.table_prefix') . 'ccnzgeocode_cache` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`address` varchar(255) DEFAULT NULL,
`lat` double NOT NULL DEFAULT '0',
`lon` double NOT NULL DEFAULT '0',
`lat` double NOT NULL DEFAULT "0",
`lon` double NOT NULL DEFAULT "0",
PRIMARY KEY (`id`),
UNIQUE KEY `address` (`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1');
Expand Down

0 comments on commit d705c8a

Please sign in to comment.