sutty/app/models/log_entry.rb

11 lines
238 B
Ruby
Raw Normal View History

2020-06-16 22:10:54 +00:00
# frozen_string_literal: true
# Un registro de cualquier cosa, nos sirve para debuguear
# selectivamente.
class LogEntry < ApplicationRecord
belongs_to :site
serialize :text, JSON
default_scope -> { order(created_at: :desc) }
end