aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-02-02 21:45:59 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-02-06 11:32:11 +0100
commitbbada27ee9e797c7f6ce997152bc1efb8c8f125d (patch)
tree230477d8febe599c1be6082cc4a5fcd8dc639333 /phpBB/includes/db
parent0ad726768c569cf4987aa93e2d6f2e5d185c7dc5 (diff)
downloadforums-bbada27ee9e797c7f6ce997152bc1efb8c8f125d.tar
forums-bbada27ee9e797c7f6ce997152bc1efb8c8f125d.tar.gz
forums-bbada27ee9e797c7f6ce997152bc1efb8c8f125d.tar.bz2
forums-bbada27ee9e797c7f6ce997152bc1efb8c8f125d.tar.xz
forums-bbada27ee9e797c7f6ce997152bc1efb8c8f125d.zip
[ticket/12115] Also port user interests to profile fields
PHPBB3-12115
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r--phpBB/includes/db/schema_data.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/schema_data.php b/phpBB/includes/db/schema_data.php
index 61f0644495..cb09116856 100644
--- a/phpBB/includes/db/schema_data.php
+++ b/phpBB/includes/db/schema_data.php
@@ -787,6 +787,7 @@ $schema_data['phpbb_profile_fields'] = array(
$schema_data['phpbb_profile_fields_data'] = array(
'COLUMNS' => array(
'user_id' => array('UINT', 0),
+ 'pf_phpbb_interests' => array('TEXT_UNI', ''),
'pf_phpbb_occupation' => array('TEXT_UNI', ''),
),
'PRIMARY_KEY' => 'user_id',
@@ -1171,7 +1172,6 @@ $schema_data['phpbb_users'] = array(
'user_msnm' => array('VCHAR_UNI', ''),
'user_jabber' => array('VCHAR_UNI', ''),
'user_website' => array('VCHAR_UNI:200', ''),
- 'user_interests' => array('TEXT_UNI', ''),
'user_actkey' => array('VCHAR:32', ''),
'user_newpasswd' => array('VCHAR_UNI:40', ''),
'user_form_salt' => array('VCHAR_UNI:32', ''),