diff options
author | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-01-03 02:27:31 +0000 |
---|---|---|
committer | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-01-03 02:27:31 +0000 |
commit | f18be0f13550500408412ced93426b9159fb8225 (patch) | |
tree | 3e438b7d1c3d9b553582e63ab440cfb321a19f26 /phpBB/db/schemas/mssql_basic.sql | |
parent | 95fd5953714a34030371f0a129a153090ded66e4 (diff) | |
download | forums-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_basic.sql')
-rw-r--r-- | phpBB/db/schemas/mssql_basic.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/schemas/mssql_basic.sql b/phpBB/db/schemas/mssql_basic.sql index e30d330130..f87d46d4fa 100644 --- a/phpBB/db/schemas/mssql_basic.sql +++ b/phpBB/db/schemas/mssql_basic.sql @@ -96,7 +96,7 @@ INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_passw */ SET IDENTITY_INSERT phpbb_ranks ON; -INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_max, rank_special, rank_image) VALUES (1, 'Site Admin', -1, -1, 1, ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES (1, 'Site Admin', -1, 1, ''); SET IDENTITY_INSERT phpbb_ranks OFF; |