aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-03 04:28:36 -0700
committerfriendica <info@friendica.com>2013-07-03 04:28:36 -0700
commit429ebabfd98240fe7d69ba81879ee35769af305f (patch)
treeb6408dbc25ca2e2664c4da201c315df6169e30e2 /install/update.php
parent064237f0cbdbd08635f9c970b3e5b3f644be793d (diff)
downloadvolse-hubzilla-429ebabfd98240fe7d69ba81879ee35769af305f.tar.gz
volse-hubzilla-429ebabfd98240fe7d69ba81879ee35769af305f.tar.bz2
volse-hubzilla-429ebabfd98240fe7d69ba81879ee35769af305f.zip
any questions regarding this checkin will be ignored
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php22
1 files changed, 21 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index ef436c688..22c069d2f 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1048 );
+define( 'UPDATE_VERSION' , 1049 );
/**
*
@@ -581,3 +581,23 @@ ADD INDEX ( `xprof_age` ) ");
return UPDATE_FAILED;
}
+function update_r1048() {
+ $r = q("CREATE TABLE IF NOT EXISTS `obj` (
+ `obj_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `obj_page` char(64) NOT NULL DEFAULT '',
+ `obj_verb` char(255) NOT NULL DEFAULT '',
+ `obj_type` int(10) unsigned NOT NULL DEFAULT '0',
+ `obj_obj` char(255) NOT NULL DEFAULT '',
+ `obj_channel` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`obj_id`),
+ KEY `obj_verb` (`obj_verb`),
+ KEY `obj_page` (`obj_page`),
+ KEY `obj_type` (`obj_type`),
+ KEY `obj_channel` (`obj_channel`),
+ KEY `obj_obj` (`obj_obj`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}