diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-28 11:05:48 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-28 14:38:03 +0100 |
commit | a823205403f2dbbd907c03e59fd232552351d566 (patch) | |
tree | 881a5d0f6448ace8aebdaebac2f687bb03713119 /phpBB/install/schemas/firebird_schema.sql | |
parent | 620f2840d742056224efa4e41dfe31d1ba7b7c7d (diff) | |
download | forums-a823205403f2dbbd907c03e59fd232552351d566.tar forums-a823205403f2dbbd907c03e59fd232552351d566.tar.gz forums-a823205403f2dbbd907c03e59fd232552351d566.tar.bz2 forums-a823205403f2dbbd907c03e59fd232552351d566.tar.xz forums-a823205403f2dbbd907c03e59fd232552351d566.zip |
[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
Diffstat (limited to 'phpBB/install/schemas/firebird_schema.sql')
-rw-r--r-- | phpBB/install/schemas/firebird_schema.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql index 263ebb4490..ea7153b643 100644 --- a/phpBB/install/schemas/firebird_schema.sql +++ b/phpBB/install/schemas/firebird_schema.sql @@ -926,7 +926,10 @@ CREATE TABLE phpbb_profile_fields ( field_hide INTEGER DEFAULT 0 NOT NULL, field_no_view INTEGER DEFAULT 0 NOT NULL, field_active INTEGER DEFAULT 0 NOT NULL, - field_order INTEGER DEFAULT 0 NOT NULL + field_order INTEGER DEFAULT 0 NOT NULL, + field_is_contact INTEGER DEFAULT 0 NOT NULL, + field_contact_desc VARCHAR(255) CHARACTER SET NONE DEFAULT '' NOT NULL, + field_contact_url VARCHAR(255) CHARACTER SET NONE DEFAULT '' NOT NULL );; ALTER TABLE phpbb_profile_fields ADD PRIMARY KEY (field_id);; |