diff options
author | Nils Adermann <naderman@naderman.de> | 2012-07-17 18:48:10 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2012-07-23 15:45:57 +0200 |
commit | 10172887fd47e86eefbabd6f5e755cd93279960d (patch) | |
tree | 307f50b083a62a9b097202c50085d63da7ec6959 /phpBB/install/schemas/sqlite_schema.sql | |
parent | 55aaa596d72c8eef54f394da22f43bdf731d9333 (diff) | |
download | forums-10172887fd47e86eefbabd6f5e755cd93279960d.tar forums-10172887fd47e86eefbabd6f5e755cd93279960d.tar.gz forums-10172887fd47e86eefbabd6f5e755cd93279960d.tar.bz2 forums-10172887fd47e86eefbabd6f5e755cd93279960d.tar.xz forums-10172887fd47e86eefbabd6f5e755cd93279960d.zip |
[ticket/10965] Introduce a new profile field option to display no value
By default the 3.0.10 behaviour is kept, profile fields will not show up
if they have either not yet been selected or in case of an optional
dropdown field if the novalue option was selected.
PHPBB3-10965
Diffstat (limited to 'phpBB/install/schemas/sqlite_schema.sql')
-rw-r--r-- | phpBB/install/schemas/sqlite_schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql index c0574244ca..be7faa4688 100644 --- a/phpBB/install/schemas/sqlite_schema.sql +++ b/phpBB/install/schemas/sqlite_schema.sql @@ -554,6 +554,7 @@ CREATE TABLE phpbb_profile_fields ( field_default_value varchar(255) NOT NULL DEFAULT '', field_validation varchar(20) NOT NULL DEFAULT '', field_required INTEGER UNSIGNED NOT NULL DEFAULT '0', + field_show_novalue INTEGER UNSIGNED NOT NULL DEFAULT '0', field_show_on_reg INTEGER UNSIGNED NOT NULL DEFAULT '0', field_show_on_vt INTEGER UNSIGNED NOT NULL DEFAULT '0', field_show_profile INTEGER UNSIGNED NOT NULL DEFAULT '0', |