From a12264193ffe9daa04155aff78a1feaff82b7670 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Dec 2012 16:17:08 -0800 Subject: modularise the notification popups --- install/database.sql | 4 ++-- install/update.php | 12 +++++++++++- 2 files changed, 13 insertions(+), 3 deletions(-) (limited to 'install') diff --git a/install/database.sql b/install/database.sql index 574aaa38e..342d93055 100644 --- a/install/database.sql +++ b/install/database.sql @@ -299,7 +299,7 @@ CREATE TABLE IF NOT EXISTS `deliverq` ( CREATE TABLE IF NOT EXISTS `event` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `account` int(10) unsigned NOT NULL DEFAULT '0', + `aid` int(10) unsigned NOT NULL DEFAULT '0', `uid` int(11) NOT NULL, `cid` int(11) NOT NULL, `message_id` char(255) NOT NULL, @@ -328,7 +328,7 @@ CREATE TABLE IF NOT EXISTS `event` ( KEY `adjust` (`adjust`), KEY `nofinish` (`nofinish`), KEY `ignore` (`ignore`), - KEY `account` (`account`) + KEY `aid` (`aid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `fcontact` ( diff --git a/install/update.php b/install/update.php index f767c2f22..e3394b5bc 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@