aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-20 22:13:25 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-20 22:13:25 -0700
commitfef93af0a6908fdcb8d829229de8717acfc7ed81 (patch)
treea81d88a1acc853b1a3419e0949babfa8182144a8
parentc96f121d4189e758392fb7796f7d87f37597cc78 (diff)
downloadvolse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.tar.gz
volse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.tar.bz2
volse-hubzilla-fef93af0a6908fdcb8d829229de8717acfc7ed81.zip
missed this one - it's required
-rwxr-xr-xboot.php2
-rw-r--r--install/schema_mysql.sql4
-rw-r--r--install/schema_postgres.sql2
-rw-r--r--install/update.php10
-rw-r--r--version.inc2
5 files changed, 16 insertions, 4 deletions
diff --git a/boot.php b/boot.php
index 0ae12e4a7..53e1dc8a7 100755
--- a/boot.php
+++ b/boot.php
@@ -49,7 +49,7 @@ define ( 'PLATFORM_NAME', 'redmatrix' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1147 );
+define ( 'DB_UPDATE_VERSION', 1148 );
/**
* @brief Constant with a HTML line break.
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 3e0e88535..e3b9413f5 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -437,6 +437,7 @@ CREATE TABLE IF NOT EXISTS `event` (
`event_percent` smallint(6) NOT NULL DEFAULT '0',
`event_repeat` text NOT NULL,
`event_sequence` smallint(6) NOT NULL DEFAULT '0',
+ `event_priority` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `type` (`type`),
@@ -449,7 +450,8 @@ CREATE TABLE IF NOT EXISTS `event` (
KEY `event_hash` (`event_hash`),
KEY `event_xchan` (`event_xchan`),
KEY `event_status` (`event_status`),
- KEY `event_sequence` (`event_sequence`)
+ KEY `event_sequence` (`event_sequence`),
+ KEY `event_priority` (`event_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index 9f92607e0..9bda284ac 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -337,6 +337,7 @@ CREATE TABLE "event" (
"event_percent" smallint(6) NOT NULL DEFAULT '0',
"event_repeat" text NOT NULL,
"event_sequence" smallint NOT NULL DEFAULT '0',
+ "event_priority" smallint NOT NULL DEFAULT '0',
PRIMARY KEY ("id")
);
create index "event_uid_idx" on event ("uid");
@@ -351,6 +352,7 @@ create index "event_hash_idx" on event ("event_hash");
create index "event_xchan_idx" on event ("event_xchan");
create index "event_status_idx" on event ("event_status");
create index "event_sequence_idx" on event ("event_sequence");
+create index "event_priority_idx" on event ("event_priority");
CREATE TABLE "fcontact" (
diff --git a/install/update.php b/install/update.php
index fa15cac6b..e5542b9cf 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1147 );
+define( 'UPDATE_VERSION' , 1148 );
/**
*
@@ -1705,3 +1705,11 @@ function update_r1146() {
return UPDATE_FAILED;
}
+function update_r1147() {
+
+ $r1 = q("alter table event add event_priority smallint not null default '0' ");
+ $r2 = q("create index event_priority on event ( event_priority ) ");
+ if($r1 && $r2)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+} \ No newline at end of file
diff --git a/version.inc b/version.inc
index 807ab4e76..a8c435908 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-08-18.1128
+2015-08-20.1130