diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-23 22:02:39 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-02-23 22:02:39 -0500 |
commit | df92b7bdf2e91f49461852eb962386009b64d2df (patch) | |
tree | 39291f93861d15d6f818223594b05c658510a9ca /phpBB/install/schemas/postgres_schema.sql | |
parent | 510248da2844df22af1cd807e13b46c0c8b68290 (diff) | |
parent | 5dee60e54e99913e1804d2c74f94b6e9ada390a7 (diff) | |
download | forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.gz forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.bz2 forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.xz forums-df92b7bdf2e91f49461852eb962386009b64d2df.zip |
Merge branch 'ticket/erikfrerejean/7778' into develop-olympus
* ticket/erikfrerejean/7778:
[ticket/7778] Update all the schema files
[ticket/7778] Add the column change to `mysql_upgrader.php`
[ticket/7778] BBCode single limit
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r-- | phpBB/install/schemas/postgres_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index 50b3979adb..a2d4dc3e0b 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -213,7 +213,7 @@ CREATE INDEX phpbb_banlist_ban_ip ON phpbb_banlist (ban_ip, ban_exclude); Table: 'phpbb_bbcodes' */ CREATE TABLE phpbb_bbcodes ( - bbcode_id INT2 DEFAULT '0' NOT NULL, + bbcode_id INT2 DEFAULT '0' NOT NULL CHECK (bbcode_id >= 0), bbcode_tag varchar(16) DEFAULT '' NOT NULL, bbcode_helpline varchar(255) DEFAULT '' NOT NULL, display_on_posting INT2 DEFAULT '0' NOT NULL CHECK (display_on_posting >= 0), |