diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-05 22:13:22 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-05 22:13:22 +0100 |
commit | f2059f52f3f8f430888366b70aa07c534abb35a1 (patch) | |
tree | a0eac95bf86b38536793107f12d1b39f2b5128cc /phpBB/includes/db | |
parent | a1dab58f6d030ba8d986a27b3faf5a91629d688b (diff) | |
download | forums-f2059f52f3f8f430888366b70aa07c534abb35a1.tar forums-f2059f52f3f8f430888366b70aa07c534abb35a1.tar.gz forums-f2059f52f3f8f430888366b70aa07c534abb35a1.tar.bz2 forums-f2059f52f3f8f430888366b70aa07c534abb35a1.tar.xz forums-f2059f52f3f8f430888366b70aa07c534abb35a1.zip |
[ticket/12236] Move AOL Instant Messanger field to custom profile field
PHPBB3-12236
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r-- | phpBB/includes/db/schema_data.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/schema_data.php b/phpBB/includes/db/schema_data.php index fe9787422f..1a08149f66 100644 --- a/phpBB/includes/db/schema_data.php +++ b/phpBB/includes/db/schema_data.php @@ -795,6 +795,7 @@ $schema_data['phpbb_profile_fields_data'] = array( 'pf_phpbb_interests' => array('TEXT_UNI', ''), 'pf_phpbb_occupation' => array('TEXT_UNI', ''), 'pf_phpbb_icq' => array('VCHAR', ''), + 'pf_phpbb_aol' => array('VCHAR', ''), 'pf_phpbb_wlm' => array('VCHAR', ''), 'pf_phpbb_yahoo' => array('VCHAR', ''), 'pf_phpbb_website' => array('VCHAR', ''), @@ -1176,7 +1177,6 @@ $schema_data['phpbb_users'] = array( 'user_sig' => array('MTEXT_UNI', ''), 'user_sig_bbcode_uid' => array('VCHAR:8', ''), 'user_sig_bbcode_bitfield' => array('VCHAR:255', ''), - 'user_aim' => array('VCHAR_UNI', ''), 'user_jabber' => array('VCHAR_UNI', ''), 'user_form_salt' => array('VCHAR_UNI:32', ''), 'user_new' => array('BOOL', 1), |