aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-08-02 14:56:17 -0700
committerfriendica <info@friendica.com>2014-08-02 14:56:17 -0700
commit85032a1fa37868699ecbcf791dba7c37ee5a4337 (patch)
treec510a4698f886ab05e7bafd85553184f80e54433 /install/update.php
parent6dd3a170a7fa83a97bdaf451dd017c0a37bc8016 (diff)
downloadvolse-hubzilla-85032a1fa37868699ecbcf791dba7c37ee5a4337.tar.gz
volse-hubzilla-85032a1fa37868699ecbcf791dba7c37ee5a4337.tar.bz2
volse-hubzilla-85032a1fa37868699ecbcf791dba7c37ee5a4337.zip
db tables for extensible profile fields
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php30
1 files changed, 29 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index 0818cc888..9ce452275 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1119 );
+define( 'UPDATE_VERSION' , 1120 );
/**
*
@@ -1323,3 +1323,31 @@ ADD INDEX ( `account_password_changed` )");
}
+function update_r1119() {
+ $r1 = q("CREATE TABLE IF NOT EXISTS `profdef` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `field_name` char(255) NOT NULL DEFAULT '',
+ `field_type` char(16) NOT NULL DEFAULT '',
+ `field_desc` char(255) NOT NULL DEFAULT '',
+ `field_help` char(255) NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `field_name` (`field_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8");
+
+ $r2 = q("CREATE TABLE IF NOT EXISTS `profext` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `channel_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `hash` char(255) NOT NULL DEFAULT '',
+ `k` char(255) NOT NULL DEFAULT '',
+ `v` mediumtext NOT NULL,
+ PRIMARY KEY (`id`),
+ KEY `channel_id` (`channel_id`),
+ KEY `hash` (`hash`),
+ KEY `k` (`k`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8");
+
+ if($r1 && $r2)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+