1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-23 19:45:10 +01:00

[ticket/12712] Remove unneeded GROUP BY clause to fix query for mssql

PHPBB3-12712
This commit is contained in:
Marc Alexander 2014-06-15 16:47:36 +02:00
parent 3a96c5b753
commit 2ca9e25bf2

View File

@ -42,7 +42,6 @@ class passwords_convert_p1 extends \phpbb\db\migration\migration
$sql = 'SELECT user_password, user_id
FROM ' . $this->table_prefix . 'users
WHERE user_pass_convert = 1
GROUP BY user_id
ORDER BY user_id';
$result = $this->db->sql_query_limit($sql, $limit, $start);