aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-07-28 11:47:02 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-07-28 11:47:02 +0000
commit1db9e62e084e29638e785c93f917e6e2acc13986 (patch)
tree727bd87831f69023d882c01644e2dc8905f604ce /phpBB/develop
parent5d52b5185300af5d13dc5db7062759bce7ee949e (diff)
downloadforums-1db9e62e084e29638e785c93f917e6e2acc13986.tar
forums-1db9e62e084e29638e785c93f917e6e2acc13986.tar.gz
forums-1db9e62e084e29638e785c93f917e6e2acc13986.tar.bz2
forums-1db9e62e084e29638e785c93f917e6e2acc13986.tar.xz
forums-1db9e62e084e29638e785c93f917e6e2acc13986.zip
same right for all. ;) Groups table using same column types as the users table for avatars.
git-svn-id: file:///svn/phpbb/trunk@7968 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/create_schema_files.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index 7f8b091324..1675fc0899 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -14,7 +14,7 @@
die("Please read the first lines of this script for instructions on how to enable it");
-set_time_limit(0);
+@set_time_limit(0);
$schema_path = './../install/schemas/';
@@ -1107,9 +1107,9 @@ function get_schema_struct()
'group_desc_uid' => array('VCHAR:5', ''),
'group_display' => array('BOOL', 0),
'group_avatar' => array('VCHAR', ''),
- 'group_avatar_type' => array('TINT:4', 0),
- 'group_avatar_width' => array('TINT:4', 0),
- 'group_avatar_height' => array('TINT:4', 0),
+ 'group_avatar_type' => array('TINT:2', 0),
+ 'group_avatar_width' => array('USINT', 0),
+ 'group_avatar_height' => array('USINT', 0),
'group_rank' => array('UINT', 0),
'group_colour' => array('VCHAR:6', ''),
'group_sig_chars' => array('UINT', 0),