diff options
author | friendica <info@friendica.com> | 2014-08-26 20:51:59 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-26 20:51:59 -0700 |
commit | 8c6067b411ee7f69b3df1341a8696ec1e5811601 (patch) | |
tree | 427917de8503a8c226276c77b24610bda4198a01 /install/update.php | |
parent | 6a42d6fe3b1e50af16942d0f22e8cfa01abfde39 (diff) | |
download | volse-hubzilla-8c6067b411ee7f69b3df1341a8696ec1e5811601.tar.gz volse-hubzilla-8c6067b411ee7f69b3df1341a8696ec1e5811601.tar.bz2 volse-hubzilla-8c6067b411ee7f69b3df1341a8696ec1e5811601.zip |
more hard work
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 9e184428e..d7a10e11b 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1124 ); +define( 'UPDATE_VERSION' , 1125 ); /** * @@ -1388,4 +1388,36 @@ ADD INDEX ( `hubloc_network` )"); return UPDATE_FAILED; } +function update_r1124() { + $r1 = q("CREATE TABLE IF NOT EXISTS `sign` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `iid` int(10) unsigned NOT NULL DEFAULT '0', + `retract_iid` int(10) unsigned NOT NULL DEFAULT '0', + `signed_text` mediumtext NOT NULL, + `signature` text NOT NULL, + `signer` char(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `iid` (`iid`), + KEY `retract_iid` (`retract_iid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 "); + + $r2 = q("CREATE TABLE IF NOT EXISTS `conv` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `guid` char(255) NOT NULL, + `recips` mediumtext NOT NULL, + `uid` int(11) NOT NULL, + `creator` char(255) NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `subject` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `created` (`created`), + KEY `updated` (`updated`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 "); + if($r1 && $r2) + return UPDATE_SUCCESS; + return UPDATE_FAILED; + + +} |