Sha256: 9fed28a5eb3bf8f9505ab55f52e9992976b4fcbe1ea27f766057c87567073c4d

Contents?: true

Size: 271 Bytes

Versions: 15

Compression:

Stored size: 271 Bytes

Contents

class MerchantCategory < ActiveRecord::Base
  self.primary_key = "mcc"

  has_many :merchant_category_industries, :foreign_key => 'mcc'
  has_many :industries, :through => :merchant_category_industries

  def name
    description
  end

  col :mcc
  col :description
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
earth-0.12.4 lib/earth/industry/merchant_category.rb
earth-0.12.3 lib/earth/industry/merchant_category.rb
earth-0.12.2 lib/earth/industry/merchant_category.rb
earth-0.12.1 lib/earth/industry/merchant_category.rb
earth-0.12.0 lib/earth/industry/merchant_category.rb
earth-0.11.20 lib/earth/industry/merchant_category.rb
earth-0.11.19 lib/earth/industry/merchant_category.rb
earth-0.11.18 lib/earth/industry/merchant_category.rb
earth-0.11.17 lib/earth/industry/merchant_category.rb
earth-0.11.16 lib/earth/industry/merchant_category.rb
earth-0.11.15 lib/earth/industry/merchant_category.rb
earth-0.11.14 lib/earth/industry/merchant_category.rb
earth-0.11.13 lib/earth/industry/merchant_category.rb
earth-0.11.12 lib/earth/industry/merchant_category.rb
earth-0.11.11 lib/earth/industry/merchant_category.rb