aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/postgres_schema.sql
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-07-23 15:48:40 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-07-23 15:48:40 +0200
commit3da72e98644a7b2bad86c9013e2250304611ce9b (patch)
treec849877f58b72802c42a4125d9fbe846c0e51f22 /phpBB/install/schemas/postgres_schema.sql
parent55aaa596d72c8eef54f394da22f43bdf731d9333 (diff)
parent19237f561396c9a2f096c9d01acc857fe92b89ba (diff)
downloadforums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar
forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.gz
forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.bz2
forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.xz
forums-3da72e98644a7b2bad86c9013e2250304611ce9b.zip
Merge remote-tracking branch 'naderman/ticket/10965' into prep-release-3.0.11
* naderman/ticket/10965: [ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1 [ticket/10965] Introduce a new profile field option to display no value
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r--phpBB/install/schemas/postgres_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index 38f167bc7b..0a05a7cd75 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -761,6 +761,7 @@ CREATE TABLE phpbb_profile_fields (
field_default_value varchar(255) DEFAULT '' NOT NULL,
field_validation varchar(20) DEFAULT '' NOT NULL,
field_required INT2 DEFAULT '0' NOT NULL CHECK (field_required >= 0),
+ field_show_novalue INT2 DEFAULT '0' NOT NULL CHECK (field_show_novalue >= 0),
field_show_on_reg INT2 DEFAULT '0' NOT NULL CHECK (field_show_on_reg >= 0),
field_show_on_vt INT2 DEFAULT '0' NOT NULL CHECK (field_show_on_vt >= 0),
field_show_profile INT2 DEFAULT '0' NOT NULL CHECK (field_show_profile >= 0),