aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-01-17 21:53:08 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-01-17 21:53:08 +0100
commit39ff387d36001c14dc2130feaf811d51e946c886 (patch)
tree3aaa960357e2bdca651a46c7a6bd89c415c8e47a /phpBB/includes
parentaa2f0a652ff19490def8137bc73255dff282f305 (diff)
downloadforums-39ff387d36001c14dc2130feaf811d51e946c886.tar
forums-39ff387d36001c14dc2130feaf811d51e946c886.tar.gz
forums-39ff387d36001c14dc2130feaf811d51e946c886.tar.bz2
forums-39ff387d36001c14dc2130feaf811d51e946c886.tar.xz
forums-39ff387d36001c14dc2130feaf811d51e946c886.zip
[ticket/11201] Update schema files and unit test
PHPBB3-11201
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/db/schema_data.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/schema_data.php b/phpBB/includes/db/schema_data.php
index 69d39e0f8c..039cb18ec2 100644
--- a/phpBB/includes/db/schema_data.php
+++ b/phpBB/includes/db/schema_data.php
@@ -758,7 +758,7 @@ $schema_data['phpbb_profile_fields'] = array(
'COLUMNS' => array(
'field_id' => array('UINT', NULL, 'auto_increment'),
'field_name' => array('VCHAR_UNI', ''),
- 'field_type' => array('TINT:4', 0),
+ 'field_type' => array('VCHAR:100', ''),
'field_ident' => array('VCHAR:20', ''),
'field_length' => array('VCHAR:20', ''),
'field_minlen' => array('VCHAR', ''),
@@ -796,7 +796,7 @@ $schema_data['phpbb_profile_fields_lang'] = array(
'field_id' => array('UINT', 0),
'lang_id' => array('UINT', 0),
'option_id' => array('UINT', 0),
- 'field_type' => array('TINT:4', 0),
+ 'field_type' => array('VCHAR:100', ''),
'lang_value' => array('VCHAR_UNI', ''),
),
'PRIMARY_KEY' => array('field_id', 'lang_id', 'option_id'),