diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2017-05-21 16:14:11 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2017-05-21 22:19:44 +0200 |
| commit | f3c782b3584c1c006e5d3da602ff953381f3e6b9 (patch) | |
| tree | d0cfc501b41c4c5ab44339ec045c8c8ad11de069 /phpBB/phpbb | |
| parent | bcc85ab679f6f100d169597990a8ab4138dd3158 (diff) | |
| download | forums-f3c782b3584c1c006e5d3da602ff953381f3e6b9.tar forums-f3c782b3584c1c006e5d3da602ff953381f3e6b9.tar.gz forums-f3c782b3584c1c006e5d3da602ff953381f3e6b9.tar.bz2 forums-f3c782b3584c1c006e5d3da602ff953381f3e6b9.tar.xz forums-f3c782b3584c1c006e5d3da602ff953381f3e6b9.zip | |
[ticket/14992] Make unit tests run more verbose
PHPBB3-14992
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/user_notifications_table_temp_index.php | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/user_notifications_table_unique_index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_temp_index.php b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_temp_index.php index eea44e168c..a6a321dbde 100644 --- a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_temp_index.php +++ b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_temp_index.php @@ -27,7 +27,7 @@ class user_notifications_table_temp_index extends \phpbb\db\migration\migration return array( 'add_index' => array( $this->table_prefix . 'user_notifications' => array( - 'itm_usr_mthd' => array('item_type', 'item_id', 'user_id', 'method'), + 'itm_usr_mthd' => array('item_type', 'item_id', 'user_id'), ), ), ); diff --git a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_unique_index.php b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_unique_index.php index 51cf90c8a0..d279af7fec 100644 --- a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_unique_index.php +++ b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_unique_index.php @@ -32,7 +32,7 @@ class user_notifications_table_unique_index extends \phpbb\db\migration\migratio ), 'add_unique_index' => array( $this->table_prefix . 'user_notifications' => array( - 'itm_usr_mthd' => array('item_type', 'item_id', 'user_id', 'method'), + 'itm_usr_mthd' => array('item_type', 'item_id', 'user_id'), ), ), ); |
