aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-16 19:13:29 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-16 19:13:29 -0700
commit6a1d1867f0dccccaf567c689a701e62c7f3a9a6d (patch)
tree34de8cca5a9b1d24681f65310638b5e5f7e0f7b9 /install/update.php
parent18bc12c21ceb6f8c4c92aefea41afa2c235500a8 (diff)
parentb3b566c907f3e48d0522fcd75c0a9ee9f988030c (diff)
downloadvolse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.tar.gz
volse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.tar.bz2
volse-hubzilla-6a1d1867f0dccccaf567c689a701e62c7f3a9a6d.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php25
1 files changed, 24 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index e8c4f578e..4f2bebba6 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1145 );
+define( 'UPDATE_VERSION' , 1146 );
/**
*
@@ -1686,4 +1686,27 @@ function update_r1144() {
}
return UPDATE_SUCCESS;
+}
+
+function update_r1145() {
+
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = q("ALTER TABLE event ADD event_status char(255) NOT NULL DEFAULT '',
+ ADD event_status_date timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
+ ADD event_percent SMALLINT NOT NULL DEFAULT '0',
+ ADD event_repeat TEXT NOT NULL DEFAULT '' ");
+ $r2 = q("create index event_status on event ( event_status )");
+ $r = $r1 && $r2;
+ }
+ else {
+ $r = q("ALTER TABLE `event` ADD `event_status` CHAR( 255 ) NOT NULL DEFAULT '',
+ ADD `event_status_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
+ ADD `event_percent` SMALLINT NOT NULL DEFAULT '0',
+ ADD `event_repeat` TEXT NOT NULL DEFAULT '',
+ ADD INDEX ( `event_status` ) ");
+ }
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+
} \ No newline at end of file