aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/postgres_schema.sql
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-12-20 00:45:41 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-12-20 00:45:41 +0000
commitcd2135b727664ec7e26653cc291d3bfc599075e7 (patch)
tree916cc4f79bc8a1ae980863af64e6a2a3212752c1 /phpBB/db/schemas/postgres_schema.sql
parent55b0c6eabeddddf68e670572d4379e25804ed622 (diff)
downloadforums-cd2135b727664ec7e26653cc291d3bfc599075e7.tar
forums-cd2135b727664ec7e26653cc291d3bfc599075e7.tar.gz
forums-cd2135b727664ec7e26653cc291d3bfc599075e7.tar.bz2
forums-cd2135b727664ec7e26653cc291d3bfc599075e7.tar.xz
forums-cd2135b727664ec7e26653cc291d3bfc599075e7.zip
Minor updates to post_username, post_subject and topic_title field lengths
git-svn-id: file:///svn/phpbb/trunk@1642 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/schemas/postgres_schema.sql')
-rw-r--r--phpBB/db/schemas/postgres_schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index 218dff49e4..cea66b3204 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -159,7 +159,7 @@ CREATE TABLE phpbb_posts (
forum_id int4 DEFAULT '0' NOT NULL,
poster_id int4 DEFAULT '0' NOT NULL,
post_time int4 DEFAULT '0' NOT NULL,
- post_username varchar(30),
+ post_username varchar(25),
poster_ip char(8) DEFAULT '' NOT NULL,
enable_bbcode int2 DEFAULT '1' NOT NULL,
enable_html int2 DEFAULT '0' NOT NULL,
@@ -181,7 +181,7 @@ CREATE INDEX topic_id_phpbb_posts_index ON phpbb_posts (topic_id);
CREATE TABLE phpbb_posts_text (
post_id int4 DEFAULT '0' NOT NULL,
bbcode_uid varchar(10) DEFAULT '' NOT NULL,
- post_subject varchar(255),
+ post_subject varchar(60),
post_text text,
CONSTRAINT phpbb_posts_text_pkey PRIMARY KEY (post_id)
);
@@ -393,7 +393,7 @@ CREATE TABLE phpbb_themes_name (
CREATE TABLE phpbb_topics (
topic_id int4 DEFAULT nextval('phpbb_topics_id_seq'::text) NOT NULL,
forum_id int4 DEFAULT '0' NOT NULL,
- topic_title varchar(100) DEFAULT '' NOT NULL,
+ topic_title varchar(60) DEFAULT '' NOT NULL,
topic_poster int4 DEFAULT '0' NOT NULL,
topic_time int4 DEFAULT '0' NOT NULL,
topic_views int4 DEFAULT '0' NOT NULL,