diff options
author | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
commit | 0596097f8603d24823ea57a68eaf405c6c0d94ff (patch) | |
tree | e2df28813c69fe500570a293fb554cf7b67c52aa /install/update.php | |
parent | 9f5bfca28dde23893156ad36682e20ca2fc0dd45 (diff) | |
download | volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.gz volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.bz2 volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.zip |
provide storage for directory based reputation in the xlink table by setting xlink_static = 1, so that xlink_static = 0 is traditional poco linkages
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 8cd25f1bf..346b2c25a 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1134 ); +define( 'UPDATE_VERSION' , 1135 ); /** * @@ -1537,3 +1537,14 @@ function update_r1133() { return UPDATE_FAILED; } + +function update_r1134() { + if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { + $r = q("ALTER TABLE xlink ADD xlink_static numeric(1) NOT NULL DEFAULT '0', create index xlink_static on xlink ( \"xlink_static\" ) "); + } + else + $r = q("ALTER TABLE xlink ADD xlink_static TINYINT( 1 ) NOT NULL DEFAULT '0', ADD INDEX ( xlink_static ) "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +}
\ No newline at end of file |