From 1db9e62e084e29638e785c93f917e6e2acc13986 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sat, 28 Jul 2007 11:47:02 +0000 Subject: 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 --- phpBB/develop/create_schema_files.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'phpBB/develop/create_schema_files.php') 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), -- cgit v1.2.1