diff options
author | friendica <info@friendica.com> | 2013-10-02 21:04:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-02 21:04:48 -0700 |
commit | 78a8d176acae142cac9d20315672772eccd6c683 (patch) | |
tree | 4aa6253a7410b097353a5ef47bcd90f88f733212 /install/update.php | |
parent | 8ce09e84c6282fbc0d5206f10c87baf8a0763a9d (diff) | |
download | volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.tar.gz volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.tar.bz2 volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.zip |
post signatures
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 8a583a947..20af0de45 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1076 ); +define( 'UPDATE_VERSION' , 1077 ); /** * @@ -859,3 +859,10 @@ ADD INDEX ( `channel_a_republish` )"); return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1076() { + $r = q("ALTER TABLE `item` CHANGE `inform` `sig` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |