aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-18 17:15:53 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-18 17:15:53 -0700
commit3b1554db2eb1a3d1346103832099d0171b978868 (patch)
treed2c60f6bd5fd78e35bfa2939cfa4cdf43b0655dc /install/update.php
parent27b61b1456cd612d70e299b695cf4d0c99f16222 (diff)
parent37d07a7d2a3808169b87c5033ef413ce957bf2ef (diff)
downloadvolse-hubzilla-3b1554db2eb1a3d1346103832099d0171b978868.tar.gz
volse-hubzilla-3b1554db2eb1a3d1346103832099d0171b978868.tar.bz2
volse-hubzilla-3b1554db2eb1a3d1346103832099d0171b978868.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php
index 4f2bebba6..3ca22c8c5 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1146 );
+define( 'UPDATE_VERSION' , 1147 );
/**
*
@@ -1709,4 +1709,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;
+}
+