From f18be0f13550500408412ced93426b9159fb8225 Mon Sep 17 00:00:00 2001
From: dougk_ff7 <dougk_ff7@users.sourceforge.net>
Date: Thu, 3 Jan 2002 02:27:31 +0000
Subject: Fixes bug 498620, among others.  A problem with a rank_max value
 still hanging around in SQL statements.  It was still created by all the
 schema files, so I changed it there, too.  If I end up creating more
 problems, I'll revert them to the old values... Actually, I think I'd better.
 Anyway, don't even ask why I updated Oracle.  I felt like it, plus we may use
 it someday... That's it for now! One bug fix... yeah!

git-svn-id: file:///svn/phpbb/trunk@1779 89ea8834-ac86-4346-8a33-228a782c2dd0
---
 phpBB/db/schemas/postgres_schema.sql | 1 -
 1 file changed, 1 deletion(-)

(limited to 'phpBB/db/schemas/postgres_schema.sql')

diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index cea66b3204..6f0b6a61ac 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -226,7 +226,6 @@ CREATE TABLE phpbb_ranks (
    rank_id int4 DEFAULT nextval('phpbb_ranks_id_seq'::text) NOT NULL,
    rank_title varchar(50) DEFAULT '' NOT NULL,
    rank_min int4 DEFAULT '0' NOT NULL,
-   rank_max int4 DEFAULT '0' NOT NULL,
    rank_special int2 DEFAULT '0',
    rank_image varchar(255),
    CONSTRAINT phpbb_ranks_pkey PRIMARY KEY (rank_id)
-- 
cgit v1.2.1