From d7edbc211f75acf0214ee554722a4f470d92157b Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 8 Sep 2010 19:35:10 -0700 Subject: Oops, forgot to update install() with the locale change that I made in cc399bf4f07fd7060536f442373a1e9c0ea4a5aa. No permanent harm done, though. --- modules/notification/helpers/notification_installer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/notification/helpers') diff --git a/modules/notification/helpers/notification_installer.php b/modules/notification/helpers/notification_installer.php index 78f72194..2ba25298 100644 --- a/modules/notification/helpers/notification_installer.php +++ b/modules/notification/helpers/notification_installer.php @@ -30,13 +30,14 @@ class notification_installer { 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) { -- cgit v1.2.3