diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-06-15 17:44:19 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-15 17:44:19 +0200 |
commit | ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9 (patch) | |
tree | aba13ac9474fb724e6c91ff93e330ceebc2c3f25 | |
parent | 3a96c5b753cbbde459f9835e952b2cb75008a9fc (diff) | |
parent | 2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5 (diff) | |
download | forums-ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9.tar forums-ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9.tar.gz forums-ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9.tar.bz2 forums-ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9.tar.xz forums-ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9.zip |
Merge pull request #2599 from marc1706/ticket/12712
[ticket/12712] Add user_password to GROUP BY clause to fix query for mssql
* marc1706/ticket/12712:
[ticket/12712] Remove unneeded GROUP BY clause to fix query for mssql
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/passwords_convert_p1.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/passwords_convert_p1.php b/phpBB/phpbb/db/migration/data/v310/passwords_convert_p1.php index 004d94d8bd..aad8e44681 100644 --- a/phpBB/phpbb/db/migration/data/v310/passwords_convert_p1.php +++ b/phpBB/phpbb/db/migration/data/v310/passwords_convert_p1.php @@ -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); |