diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-18 17:10:40 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-18 17:10:40 -0700 |
commit | 37d07a7d2a3808169b87c5033ef413ce957bf2ef (patch) | |
tree | 9ace4e8f13b6ae947dc6e9182009ab68c8dd5660 /install/update.php | |
parent | 75fbf21e6b423a91ff589d2fa349487623bc1a36 (diff) | |
download | volse-hubzilla-37d07a7d2a3808169b87c5033ef413ce957bf2ef.tar.gz volse-hubzilla-37d07a7d2a3808169b87c5033ef413ce957bf2ef.tar.bz2 volse-hubzilla-37d07a7d2a3808169b87c5033ef413ce957bf2ef.zip |
add event_sequence for vtodo's
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php index c86a29d1a..fa15cac6b 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1146 ); +define( 'UPDATE_VERSION' , 1147 ); /** * @@ -1694,4 +1694,14 @@ function update_r1145() { return UPDATE_SUCCESS; return UPDATE_FAILED; -}
\ No newline at end of file +} + +function update_r1146() { + + $r1 = q("alter table event add event_sequence smallint not null default '0' "); + $r2 = q("create index event_sequence on event ( event_sequence ) "); + if($r1 && $r2) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} + |