diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-05-21 14:18:10 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-05-21 14:18:10 +0200 |
commit | 11f968e774fed238030f851c4ad90facf86e583f (patch) | |
tree | c259b4abc9c2517119f53190e00316aafd57d168 /phpBB/phpbb/db | |
parent | 59ac4a71b6dc53f2edf8bb5c669b14df9ce5544a (diff) | |
download | forums-11f968e774fed238030f851c4ad90facf86e583f.tar forums-11f968e774fed238030f851c4ad90facf86e583f.tar.gz forums-11f968e774fed238030f851c4ad90facf86e583f.tar.bz2 forums-11f968e774fed238030f851c4ad90facf86e583f.tar.xz forums-11f968e774fed238030f851c4ad90facf86e583f.zip |
[ticket/14992] Shorten index name for user_id and item_id
PHPBB3-14992
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php index e492b4e1f8..0a471766a0 100644 --- a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php +++ b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php @@ -27,7 +27,7 @@ class user_notifications_table_index_p2 extends \phpbb\db\migration\migration return array( 'add_index' => array( $this->table_prefix . 'user_notifications' => array( - 'usr_id_itm_id' => array('user_id', 'item_id'), + 'uid_itm_id' => array('user_id', 'item_id'), ), ), ); @@ -38,7 +38,7 @@ class user_notifications_table_index_p2 extends \phpbb\db\migration\migration return array( 'drop_keys' => array( $this->table_prefix . 'user_notifications' => array( - 'usr_id_itm_id', + 'uid_itm_id', ), ), ); |