Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/release.rb')
-rw-r--r--app/models/release.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/release.rb b/app/models/release.rb
index 7f74872cf67..f0ba56390ab 100644
--- a/app/models/release.rb
+++ b/app/models/release.rb
@@ -64,10 +64,10 @@ class Release < ApplicationRecord
end
# This query uses LATERAL JOIN to find the latest release for each project. To avoid
- # joining the `releases` table, we build an in-memory table using the project ids.
+ # joining the `projects` table, we build an in-memory table using the project ids.
# Example:
# SELECT ...
- # FROM (VALUES (PROJECT_ID_1),(PROJECT_ID_2)) project_ids (id)
+ # FROM (VALUES (PROJECT_ID_1),(PROJECT_ID_2)) projects (id)
# INNER JOIN LATERAL (...)
def latest_for_projects(projects, order_by: 'released_at')
return Release.none if projects.empty?