Sha256: 69832ce9e2d9afd78a6417d90aae17b5bc0ee353fd1c9a9d1a0bbf483e222520

Contents?: true

Size: 439 Bytes

Versions: 1

Compression:

Stored size: 439 Bytes

Contents

# create_table :product_feature_interaction_types do |t|
#   t.string :internal_identifier
#   t.string :description
#
#   t.timestamps
# end
#
# add_index :product_feature_interaction_types, :internal_identifier, name: 'product_ft_int_types_iid_idx'

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

  acts_as_erp_type

  has_many :product_feature_interactions, dependent: :destroy

end

Version data entries

1 entries across 1 versions & 1 rubygems

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