aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/mssql_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/mssql_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/mssql_schema.sql')
-rw-r--r--phpBB/db/schemas/mssql_schema.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/db/schemas/mssql_schema.sql b/phpBB/db/schemas/mssql_schema.sql
index 1e278f6cb3..998e05a76a 100644
--- a/phpBB/db/schemas/mssql_schema.sql
+++ b/phpBB/db/schemas/mssql_schema.sql
@@ -149,7 +149,6 @@ CREATE TABLE [phpbb_ranks] (
[rank_id] [int] IDENTITY (1, 1) NOT NULL ,
[rank_title] [varchar] (50) NOT NULL ,
[rank_min] [int] NULL ,
- [rank_max] [int] NULL ,
[rank_special] [smallint] NULL ,
[rank_image] [varchar] (50) NULL
) ON [PRIMARY]