fix(catalog): migrations

This commit is contained in:
Ivan Shmidt
2020-07-24 03:43:58 +02:00
parent 291a284a19
commit 7b37d63940
@@ -25,7 +25,7 @@ exports.up = function up(knex) {
) t2
ON t1.location_id = t2.location_id
AND t1.created_at = t2.MAXDATE
GROUP BY t1.location_id
GROUP BY t1.location_id, t1.id
ORDER BY created_at DESC;
`);
};