Files
danbooru/app/models/artist_version.rb
BrokenEagle 76dcccb7de Alter previous method on all versions models
This is to prevent redoing the same SQL query which wasn't being cached.
2020-02-08 16:14:51 +00:00

33 lines
711 B
Ruby

class ArtistVersion < ApplicationRecord
array_attribute :urls
array_attribute :other_names
belongs_to_updater
belongs_to :artist
module SearchMethods
def search(params)
q = super
q = q.search_attributes(params, :updater, :is_active, :is_banned, :artist_id, :name, :group_name)
if params[:order] == "name"
q = q.order("artist_versions.name").default_order
else
q = q.apply_default_order(params)
end
q
end
end
extend SearchMethods
def previous
@previous ||= begin
ArtistVersion.where("artist_id = ? and created_at < ?", artist_id, created_at).order("created_at desc").limit(1).to_a
end
@previous.first
end
end