diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-23 22:32:46 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-23 22:32:46 -0700 |
commit | 0f3c2c4b2448694da4f0b350c1814fb5df973ce9 (patch) | |
tree | d6e6efd2cdb2aa3aabebf7221697c89622c67d55 /install/update.php | |
parent | b553ffd55d04d11c0802b1688d74e96f3ed01ddf (diff) | |
download | volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.tar.gz volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.tar.bz2 volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.zip |
add vdata field for caldav
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 bef754570..500a89fc0 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1154 ); +define( 'UPDATE_VERSION' , 1155 ); /** * @@ -1865,3 +1865,12 @@ function update_r1153() { } + +function update_r1154() { + + $r = q("ALTER TABLE event ADD event_vdata text NOT NULL "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; + +}
\ No newline at end of file |