diff options
author | friendica <info@friendica.com> | 2013-03-21 02:21:56 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-21 02:21:56 -0700 |
commit | d9492a4a7687ba3804fcb353d916002b8fb2853d (patch) | |
tree | 52428574e452bf01db114cdb24599ddae3791edd /install/update.php | |
parent | 4b22c6e531739d96fbe9c78f629aa34c35acb821 (diff) | |
parent | 6db6f6640e73b85ddedbcbacb60f06b185372065 (diff) | |
download | volse-hubzilla-d9492a4a7687ba3804fcb353d916002b8fb2853d.tar.gz volse-hubzilla-d9492a4a7687ba3804fcb353d916002b8fb2853d.tar.bz2 volse-hubzilla-d9492a4a7687ba3804fcb353d916002b8fb2853d.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 0c7c6e0df..533fd63e5 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1036 ); +define( 'UPDATE_VERSION' , 1037 ); /** * @@ -462,3 +462,7 @@ KEY `k` ( `k` ) return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1036() { + q("ALTER TABLE `profile` ADD `channels` TEXT NOT NULL AFTER `contact` "); +} |