aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-17 17:18:56 -0700
committerfriendica <info@friendica.com>2014-05-17 17:18:56 -0700
commit28e8a1d2d3d8929a0318ea9b6ae65437b6e3c41b (patch)
treec565071cdbde22096fc9dcb5eabc32c3a03f6eef
parent9e95458ea5fd1cc24df59c70d0bf1d315fe6a3a3 (diff)
downloadvolse-hubzilla-28e8a1d2d3d8929a0318ea9b6ae65437b6e3c41b.tar.gz
volse-hubzilla-28e8a1d2d3d8929a0318ea9b6ae65437b6e3c41b.tar.bz2
volse-hubzilla-28e8a1d2d3d8929a0318ea9b6ae65437b6e3c41b.zip
app DB structure
-rwxr-xr-xboot.php14
-rw-r--r--install/database.sql22
-rw-r--r--install/update.php27
-rw-r--r--version.inc2
4 files changed, 56 insertions, 9 deletions
diff --git a/boot.php b/boot.php
index 602012c85..f9f8ad43f 100755
--- a/boot.php
+++ b/boot.php
@@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1107 );
+define ( 'DB_UPDATE_VERSION', 1108 );
define ( 'EOL', '<br />' . "\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@@ -397,12 +397,11 @@ define ( 'XCHAN_FLAGS_DELETED', 0x1000);
* Traficlights for Administration of HubLoc
* to detect problems in inter server communication
*/
-define ('HUBLOC_NOTUSED', 0x0000);
-define ('HUBLOC_SEND_ERROR', 0x0001);
-define ('HUBLOC_RECEIVE_ERROR', 0x0002);
-define ('HUBLOC_WORKS', 0x0004);
-define ('HUBLOC_OFFLINE', 0x0008);
-
+define ('HUBLOC_NOTUSED', 0x0000);
+define ('HUBLOC_SEND_ERROR', 0x0001);
+define ('HUBLOC_RECEIVE_ERROR', 0x0002);
+define ('HUBLOC_WORKS', 0x0004);
+define ('HUBLOC_OFFLINE', 0x0008);
/**
* Tag/term types
@@ -424,6 +423,7 @@ define ( 'TERM_OBJ_PROFILE', 3 );
define ( 'TERM_OBJ_CHANNEL', 4 );
define ( 'TERM_OBJ_OBJECT', 5 );
define ( 'TERM_OBJ_THING', 6 );
+define ( 'TERM_OBJ_APP', 7 );
/**
diff --git a/install/database.sql b/install/database.sql
index a5094b8e1..31fa68e9d 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -82,6 +82,28 @@ CREATE TABLE IF NOT EXISTS `addon` (
KEY `installed` (`installed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+CREATE TABLE IF NOT EXISTS `app` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `app_id` char(64) NOT NULL DEFAULT '',
+ `app_sig` char(255) NOT NULL DEFAULT '',
+ `app_author` char(255) NOT NULL DEFAULT '',
+ `app_name` char(255) NOT NULL DEFAULT '',
+ `app_desc` text NOT NULL,
+ `app_url` char(255) NOT NULL DEFAULT '',
+ `app_photo` char(255) NOT NULL DEFAULT '',
+ `app_version` char(255) NOT NULL DEFAULT '',
+ `app_channel` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`),
+ KEY `app_id` (`app_id`),
+ KEY `app_name` (`app_name`),
+ KEY `app_url` (`app_url`),
+ KEY `app_photo` (`app_photo`),
+ KEY `app_version` (`app_version`),
+ KEY `app_channel` (`app_channel`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+
CREATE TABLE IF NOT EXISTS `attach` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`aid` int(10) unsigned NOT NULL DEFAULT '0',
diff --git a/install/update.php b/install/update.php
index d497cda70..92a4d6ef2 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1107 );
+define( 'UPDATE_VERSION' , 1108 );
/**
*
@@ -1189,3 +1189,28 @@ function update_r1106() {
return UPDATE_FAILED;
}
+function update_r1107() {
+ $r = q("CREATE TABLE IF NOT EXISTS `app` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `app_id` char(64) NOT NULL DEFAULT '',
+ `app_sig` char(255) NOT NULL DEFAULT '',
+ `app_author` char(255) NOT NULL DEFAULT '',
+ `app_name` char(255) NOT NULL DEFAULT '',
+ `app_desc` text NOT NULL,
+ `app_url` char(255) NOT NULL DEFAULT '',
+ `app_photo` char(255) NOT NULL DEFAULT '',
+ `app_version` char(255) NOT NULL DEFAULT '',
+ `app_channel` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`),
+ KEY `app_id` (`app_id`),
+ KEY `app_name` (`app_name`),
+ KEY `app_url` (`app_url`),
+ KEY `app_photo` (`app_photo`),
+ KEY `app_version` (`app_version`),
+ KEY `app_channel` (`app_channel`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
diff --git a/version.inc b/version.inc
index 5731b72bb..3f746cef1 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-05-16.677
+2014-05-17.678