Skip to content

Commit

Permalink
Oops, forgot to update install() with the locale change that I made in
Browse files Browse the repository at this point in the history
cc399bf.  No permanent harm done,
though.
  • Loading branch information
bharat committed Sep 9, 2010
1 parent 90ba0f9 commit d7edbc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/notification/helpers/notification_installer.php
Expand Up @@ -30,13 +30,14 @@ static function install() {
DEFAULT CHARSET=utf8;");
$db->query("CREATE TABLE IF NOT EXISTS {pending_notifications} (
`id` int(9) NOT NULL auto_increment,
`locale` char(10) default NULL,
`email` varchar(128) NOT NULL,
`subject` varchar(255) NOT NULL,
`text` text,
PRIMARY KEY (`id`))
DEFAULT CHARSET=utf8;");

module::set_version("notification", 1);
module::set_version("notification", 2);
}

static function upgrade($version) {
Expand Down

0 comments on commit d7edbc2

Please sign in to comment.