# frozen_string_literal: true # Partner class Partner < ApplicationRecord # == Constants ============================================================ # == Attributes =========================================================== # == Extensions =========================================================== # == Relationships ======================================================== has_one_attached :logo # == Validations ========================================================== validates :name, presence: true # == Scopes =============================================================== # == Callbacks ============================================================ # == Class Methods ======================================================== # == Instance Methods ===================================================== end