mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 00:37:42 +02:00
[ticket/12233] Allow profile fields to be contact fields
Contact fields are displayed with in the contact section of the user profile and are displayed differently in the mini profile next to posts and private messages PHPBB3-12233
This commit is contained in:
@@ -872,6 +872,9 @@ CREATE TABLE phpbb_profile_fields (
|
||||
field_no_view INT2 DEFAULT '0' NOT NULL CHECK (field_no_view >= 0),
|
||||
field_active INT2 DEFAULT '0' NOT NULL CHECK (field_active >= 0),
|
||||
field_order INT4 DEFAULT '0' NOT NULL CHECK (field_order >= 0),
|
||||
field_is_contact INT2 DEFAULT '0' NOT NULL CHECK (field_is_contact >= 0),
|
||||
field_contact_desc varchar(255) DEFAULT '' NOT NULL,
|
||||
field_contact_url varchar(255) DEFAULT '' NOT NULL,
|
||||
PRIMARY KEY (field_id)
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user