提交 fba2ec45 编写于 作者: L Lin Jen-Shin

Just use order(id: :desc) for latest stuffs:

We don't need that subquery for group by ref and alike here.
上级 1a41cb90
......@@ -16,7 +16,7 @@ module Ci
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
scope :latest_success_with_artifacts, ->() do
with_artifacts.success.latest
with_artifacts.success.order(id: :desc)
end
mount_uploader :artifacts_file, ArtifactUploader
......
......@@ -20,14 +20,6 @@ module Ci
after_touch :update_state
after_save :keep_around_commits
scope :latest, -> do
max_id = unscope(:select).
select("max(#{table_name}.id)").
group(:ref)
where(id: max_id)
end
def self.truncate_sha(sha)
sha[0...8]
end
......@@ -226,7 +218,7 @@ module Ci
def keep_around_commits
return unless project
project.repository.keep_around(self.sha)
project.repository.keep_around(self.before_sha)
end
......
......@@ -431,7 +431,7 @@ class Project < ActiveRecord::Base
# ref can't be HEAD or SHA, can only be branch/tag name
def latest_success_pipeline_for(ref = 'master')
pipelines.where(ref: ref).success.latest
pipelines.where(ref: ref).success.order(id: :desc)
end
# ref can't be HEAD or SHA, can only be branch/tag name
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册