Sha256: a96d528f6dd1ccd5600bb5fe2a9655715fae0978b0383c00bd1cc9bb883bb8d9
Contents?: true
Size: 534 Bytes
Versions: 23
Compression:
Stored size: 534 Bytes
Contents
module Logical module Naf module JobStatuses class FinishedLessMinute def self.all(conditions) <<-SQL ( SELECT j.*, NULL AS "historical_job_id" FROM "#{::Naf.schema_name}"."historical_jobs" AS j WHERE j.finished_at > '#{Time.zone.now - 1.minute}' #{conditions} ORDER BY finished_at DESC ) SQL end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems