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/oracle_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/oracle_basic.sql')
-rw-r--r-- | phpBB/db/schemas/oracle_basic.sql | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/db/schemas/oracle_basic.sql b/phpBB/db/schemas/oracle_basic.sql index bc951a6297..384f60b78f 100644 --- a/phpBB/db/schemas/oracle_basic.sql +++ b/phpBB/db/schemas/oracle_basic.sql @@ -70,11 +70,11 @@ INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_passw -- Ranks -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_max, rank_special, rank_image) VALUES ( '2', 'Newbie', '0', '9', '0', ''); -INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_max, rank_special, rank_image) VALUES ( '5', 'Here Often', '10', '49', '0', ''); -INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_max, rank_special, rank_image) VALUES ( '6', 'Should Get Out More', '50', '199', '0', ''); -INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_max, rank_special, rank_image) VALUES ( '7', 'Has No Life', '200', '9999', '0', ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES ( '1', 'Site Admin', '-1', '1', ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES ( '2', 'Newbie', '0', '0', ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES ( '5', 'Here Often', '10', '0', ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES ( '6', 'Should Get Out More', '50', '0', ''); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES ( '7', 'Has No Life', '200', '0', ''); -- Groups |