diff options
author | friendica <info@friendica.com> | 2015-02-01 20:30:47 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-01 20:30:47 -0800 |
commit | aafed50a0ea8a8d7091572473dcb8e4fb8cd4602 (patch) | |
tree | 66b27325cd7bcce748965aebb29ab8a1da2f340d /install/update.php | |
parent | e6a5f7800390e5091743d6a97c6fd8f54c5d1530 (diff) | |
parent | e58bef049d7736d448f7bb5688affe491b9e24b1 (diff) | |
download | volse-hubzilla-aafed50a0ea8a8d7091572473dcb8e4fb8cd4602.tar.gz volse-hubzilla-aafed50a0ea8a8d7091572473dcb8e4fb8cd4602.tar.bz2 volse-hubzilla-aafed50a0ea8a8d7091572473dcb8e4fb8cd4602.zip |
Merge branch 'master' into tres
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php index 597da4e3b..c6e4535e1 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1135 ); +define( 'UPDATE_VERSION' , 1136 ); /** * @@ -1549,4 +1549,11 @@ function update_r1134() { if($r) return UPDATE_SUCCESS; return UPDATE_FAILED; -}
\ No newline at end of file +} + +function update_r1135() { + $r = q("ALTER TABLE xlink ADD xlink_sig TEXT NOT NULL DEFAULT ''"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |