diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-06-15 16:47:36 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-06-15 17:09:07 +0200 |
commit | 2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5 (patch) | |
tree | aba13ac9474fb724e6c91ff93e330ceebc2c3f25 /phpBB | |
parent | 3a96c5b753cbbde459f9835e952b2cb75008a9fc (diff) | |
download | forums-2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5.tar forums-2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5.tar.gz forums-2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5.tar.bz2 forums-2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5.tar.xz forums-2ca9e25bf2d9b9a61eb869fe3c2b626247d948e5.zip |
[ticket/12712] Remove unneeded GROUP BY clause to fix query for mssql
PHPBB3-12712
Diffstat (limited to 'phpBB')
-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); |