mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 13:30:25 +02:00
Minor schema change related to avatars so that they can be > 127px in size
Add additional note about the install directory Remove some empty tags from the template git-svn-id: file:///svn/phpbb/trunk@6305 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1266,8 +1266,8 @@ CREATE TABLE phpbb_users (
|
||||
user_options INT4 DEFAULT '893' NOT NULL CHECK (user_options >= 0),
|
||||
user_avatar varchar(255) DEFAULT '' NOT NULL,
|
||||
user_avatar_type INT2 DEFAULT '0' NOT NULL,
|
||||
user_avatar_width INT2 DEFAULT '0' NOT NULL,
|
||||
user_avatar_height INT2 DEFAULT '0' NOT NULL,
|
||||
user_avatar_width INT2 DEFAULT '0' NOT NULL CHECK (user_avatar_width >= 0),
|
||||
user_avatar_height INT2 DEFAULT '0' NOT NULL CHECK (user_avatar_height >= 0),
|
||||
user_sig TEXT DEFAULT '' NOT NULL,
|
||||
user_sig_bbcode_uid varchar(5) DEFAULT '' NOT NULL,
|
||||
user_sig_bbcode_bitfield varchar(252) DEFAULT '' NOT NULL,
|
||||
|
Reference in New Issue
Block a user