Sha256: b0dce9fd714f406dddba207904ce182d789ae23de0db542ed0949d823823b2c9

Contents?: true

Size: 632 Bytes

Versions: 1

Compression:

Stored size: 632 Bytes

Contents

# create_table :product_feature_type_product_feature_values do |t|
#   t.references :product_feature_type
#   t.references :product_feature_value
#
#   t.timestamps
# end
#
# add_index :product_feature_type_product_feature_values, :product_feature_type_id, :name => 'prod_feature_type_feature_value_type_idx'
# add_index :product_feature_type_product_feature_values, :product_feature_value_id, :name => 'prod_feature_type_feature_value_value_idx'#

class ProductFeatureTypeProductFeatureValue < ActiveRecord::Base
  attr_protected :created_at, :updated_at

  belongs_to :product_feature_type
  belongs_to :product_feature_value
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_products-4.2.0 app/models/product_feature_type_product_feature_value.rb