diff options
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 144a972f9..4c5e4d3a6 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1009 ); +define( 'UPDATE_VERSION' , 1010 ); /** * @@ -160,3 +160,12 @@ function update_r1008() { return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1009() { + $r = q("ALTER TABLE `xprof` ADD `xprof_keywords` TEXT NOT NULL"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} + + |