diff options
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` "); +} |