aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-18 16:04:01 -0800
committerfriendica <info@friendica.com>2013-02-18 16:04:01 -0800
commit5914ebbfe8687abd91be28490d3abb50add96400 (patch)
treec54df9f5f7bf9d068ff2e85245f392dbfbae3425
parentcf2bcfdd52d5b17ddb2dc264f3543fc4dfa3034f (diff)
downloadvolse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.tar.gz
volse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.tar.bz2
volse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.zip
reverse the cyclic conundrum, and a minor db update of no consequence
-rw-r--r--boot.php3
-rw-r--r--install/database.sql17
-rw-r--r--install/update.php24
3 files changed, 42 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 3d6f1f3f7..8d2e7c6e8 100644
--- a/boot.php
+++ b/boot.php
@@ -16,7 +16,7 @@ require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica Red');
define ( 'FRIENDICA_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1030 );
+define ( 'DB_UPDATE_VERSION', 1031 );
define ( 'EOL', '<br />' . "\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@@ -415,6 +415,7 @@ define ( 'ITEM_MENTIONSME', 0x0400);
function startup() {
error_reporting(E_ERROR | E_WARNING | E_PARSE);
+ // Some hosting providers block/disable this
@set_time_limit(0);
// This has to be quite large to deal with embedded private photos
diff --git a/install/database.sql b/install/database.sql
index 7fd200017..3dcbb7be0 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -440,6 +440,23 @@ CREATE TABLE IF NOT EXISTS `intro` (
KEY `contact-id` (`contact-id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+CREATE TABLE IF NOT EXISTS `issue` (
+ `issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `issue_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ `issue_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ `issue_assigned` char(255) NOT NULL,
+ `issue_priority` int(11) NOT NULL,
+ `issue_status` int(11) NOT NULL,
+ `issue_component` char(255) NOT NULL,
+ PRIMARY KEY (`issue_id`),
+ KEY `issue_created` (`issue_created`),
+ KEY `issue_updated` (`issue_updated`),
+ KEY `issue_assigned` (`issue_assigned`),
+ KEY `issue_priority` (`issue_priority`),
+ KEY `issue_status` (`issue_status`),
+ KEY `issue_component` (`issue_component`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
CREATE TABLE IF NOT EXISTS `item` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uri` char(255) CHARACTER SET ascii NOT NULL DEFAULT '',
diff --git a/install/update.php b/install/update.php
index 290b80cd1..26cd7a173 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1030 );
+define( 'UPDATE_VERSION' , 1031 );
/**
*
@@ -365,3 +365,25 @@ ADD INDEX ( `channel_deleted` ) ");
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1030() {
+ $r = q("CREATE TABLE IF NOT EXISTS`issue` (
+`issue_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+`issue_created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
+`issue_updated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
+`issue_assigned` CHAR( 255 ) NOT NULL ,
+`issue_priority` INT NOT NULL ,
+`issue_status` INT NOT NULL ,
+`issue_component` CHAR( 255 ) NOT NULL,
+KEY `issue_created` (`issue_created`),
+KEY `issue_updated` (`issue_updated`),
+KEY `issue_assigned` (`issue_assigned`),
+KEY `issue_priority` ('issue_priority`),
+KEY `issue_status` (`issue_status`),
+KEY `issue_component` (`issue_component`)
+) ENGINE = MYISAM ");
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}