diff options
author | friendica <info@friendica.com> | 2013-08-21 17:15:56 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-21 17:15:56 -0700 |
commit | 2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a (patch) | |
tree | aef39fd3b1a1c4cf51561b8a2e67cf5b253e4842 /install/update.php | |
parent | d8ef1417fb2ff8d736e4392c118c51c63dc66b1d (diff) | |
download | volse-hubzilla-2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a.tar.gz volse-hubzilla-2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a.tar.bz2 volse-hubzilla-2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a.zip |
basic structure for premium channel implementation
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index c5eaa4f19..9beb25254 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1063 ); +define( 'UPDATE_VERSION' , 1064 ); /** * @@ -742,3 +742,11 @@ KEY `pelm_result` (`pelm_result`) return UPDATE_FAILED; } +function update_r1063() { + $r = q("ALTER TABLE `xchan` ADD `xchan_follow` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_connurl` , +ADD `xchan_connpage` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_follow` , +ADD INDEX ( `xchan_follow` ), ADD INDEX ( `xchan_connpage`) "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |