diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-06-13 02:20:35 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-06-13 02:20:35 +0200 |
commit | 5c010250ee18a8999e7b8e8139585d330138b1ed (patch) | |
tree | e711f50d511c38b38f467eefd8cc1f9303a4fc3f /phpBB/install/schemas/oracle_schema.sql | |
parent | ddea203492dce035677ca5125179c8c2907a2021 (diff) | |
parent | 7cc45ee0d5606ddd9143a8a80b6974d027916a89 (diff) | |
download | forums-5c010250ee18a8999e7b8e8139585d330138b1ed.tar forums-5c010250ee18a8999e7b8e8139585d330138b1ed.tar.gz forums-5c010250ee18a8999e7b8e8139585d330138b1ed.tar.bz2 forums-5c010250ee18a8999e7b8e8139585d330138b1ed.tar.xz forums-5c010250ee18a8999e7b8e8139585d330138b1ed.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10213] Update install schema with shorter index names.
Diffstat (limited to 'phpBB/install/schemas/oracle_schema.sql')
-rw-r--r-- | phpBB/install/schemas/oracle_schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql index 5e142d01d6..84d59a956d 100644 --- a/phpBB/install/schemas/oracle_schema.sql +++ b/phpBB/install/schemas/oracle_schema.sql @@ -759,11 +759,11 @@ CREATE TABLE phpbb_login_attempts ( ) / -CREATE INDEX phpbb_login_attempts_attempt_ip ON phpbb_login_attempts (attempt_ip, attempt_time) +CREATE INDEX phpbb_login_attempts_att_ip ON phpbb_login_attempts (attempt_ip, attempt_time) / -CREATE INDEX phpbb_login_attempts_attempt_forwarded_for ON phpbb_login_attempts (attempt_forwarded_for, attempt_time) +CREATE INDEX phpbb_login_attempts_att_for ON phpbb_login_attempts (attempt_forwarded_for, attempt_time) / -CREATE INDEX phpbb_login_attempts_attempt_time ON phpbb_login_attempts (attempt_time) +CREATE INDEX phpbb_login_attempts_att_time ON phpbb_login_attempts (attempt_time) / CREATE INDEX phpbb_login_attempts_user_id ON phpbb_login_attempts (user_id) / |