@@ -2,7 +2,7 @@ class ProductAttrConfig < ActiveRecord::Base
has_paper_trail
self.table_name = 'product_attr_configs'
belongs_to :product_attr_key, :foreign_key => :attr_key_id
- validates :type,presence:true
+ validates :size_type,presence:true
def show_products
@@ -31,20 +31,20 @@ class ProductAttrConfig < ActiveRecord::Base
field :product_id
field :showProducts
field :product_attr_key
- field :type
+ field :size_type
end
show do
field :id
edit do
@@ -30,7 +30,7 @@ class CreateProductAttrs < ActiveRecord::Migration
# 规格ID
t.column :attr_key_id, :integer, :limit => 8, :default => 0
# 类型
- t.column :type, :integer, :limit => 8, :default => 0
+ t.column :size_type, :integer, :limit => 8, :default => 0
t.timestamps