BathHacked/energy-sparks

View on GitHub
app/models/transifex_load.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
#
# Table name: transifex_loads
#
#  created_at :datetime         not null
#  id         :bigint(8)        not null, primary key
#  pulled     :integer          default(0), not null
#  pushed     :integer          default(0), not null
#  status     :integer          default("running"), not null
#  updated_at :datetime         not null
#
class TransifexLoad < ApplicationRecord
  has_many :transifex_load_errors, :dependent => :destroy

  enum status: [:running, :done]

  scope :by_date, -> { order(created_at: :desc) }

  def errors?
    transifex_load_errors.any?
  end
end