aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/oracle_schema.sql
diff options
context:
space:
mode:
authordougk_ff7 <dougk_ff7@users.sourceforge.net>2002-01-03 02:27:31 +0000
committerdougk_ff7 <dougk_ff7@users.sourceforge.net>2002-01-03 02:27:31 +0000
commitf18be0f13550500408412ced93426b9159fb8225 (patch)
tree3e438b7d1c3d9b553582e63ab440cfb321a19f26 /phpBB/db/schemas/oracle_schema.sql
parent95fd5953714a34030371f0a129a153090ded66e4 (diff)
downloadforums-f18be0f13550500408412ced93426b9159fb8225.tar
forums-f18be0f13550500408412ced93426b9159fb8225.tar.gz
forums-f18be0f13550500408412ced93426b9159fb8225.tar.bz2
forums-f18be0f13550500408412ced93426b9159fb8225.tar.xz
forums-f18be0f13550500408412ced93426b9159fb8225.zip
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
Diffstat (limited to 'phpBB/db/schemas/oracle_schema.sql')
-rw-r--r--phpBB/db/schemas/oracle_schema.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/db/schemas/oracle_schema.sql b/phpBB/db/schemas/oracle_schema.sql
index 8f68aab9ca..9894cbaef7 100644
--- a/phpBB/db/schemas/oracle_schema.sql
+++ b/phpBB/db/schemas/oracle_schema.sql
@@ -259,7 +259,6 @@ CREATE TABLE phpbb_ranks (
rank_id number(4) NOT NULL,
rank_title varchar(50) DEFAULT '' NOT NULL,
rank_min number(4) DEFAULT '0' NOT NULL,
- rank_max number(4) DEFAULT '0' NOT NULL,
rank_special number(4) DEFAULT '0',
rank_image varchar(255),
CONSTRAINT phpbb_ranks_pkey PRIMARY KEY (rank_id)