add DB support for tasks, todo items and repeating events

This commit is contained in:
redmatrix
2015-08-16 17:17:34 -07:00
parent 1d4dc7e27c
commit b3b566c907
5 changed files with 37 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1145 );
define( 'UPDATE_VERSION' , 1146 );
/**
*
@@ -1671,4 +1671,27 @@ function update_r1143() {
function update_r1144() {
// hubzilla update does not apply here, but we're keeping the numbers in sync
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;
}