# frozen_string_literal: true class ApplicationRecord < ActiveRecord::Base self.abstract_class = true default_scope { order(created_at: :desc) } end