From e179dca446b4e604b7486e79d694d39679d1209f Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 26 Aug 2014 22:37:04 -0700 Subject: [PATCH] place to store multiple choice and select items for extensible profiles --- boot.php | 2 +- install/database.sql | 1 + install/update.php | 11 ++++++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 04534f80a..f19b1f117 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', 1125 ); +define ( 'DB_UPDATE_VERSION', 1126 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/database.sql b/install/database.sql index 953f4aba1..7f6a128c9 100644 --- a/install/database.sql +++ b/install/database.sql @@ -823,6 +823,7 @@ CREATE TABLE IF NOT EXISTS `profdef` ( `field_type` char(16) NOT NULL DEFAULT '', `field_desc` char(255) NOT NULL DEFAULT '', `field_help` char(255) NOT NULL DEFAULT '', + `field_inputs` mediumtext NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `field_name` (`field_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/install/update.php b/install/update.php index d7a10e11b..7c05173c0 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@