# == Schema Information # # Table name: legal_translations # # id :bigint not null, primary key # title :string # content :text # legal_id :integer # language_id :string # position :integer # keywords :string # created_at :datetime not null # updated_at :datetime not null # class LegalTranslation < ApplicationRecord
belongs_to :legal default_scope { order(:position) }
end