Class: CreateProductProperties
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateProductProperties
- Defined in:
- lib/generators/coalla/cms/market/templates/migrations/create_product_properties.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/generators/coalla/cms/market/templates/migrations/create_product_properties.rb', line 3 def change create_table :market_product_properties do |t| t.text :value t.references :product t.index :product_id t.foreign_key :market_products, column: :product_id t.references :property t.index :property_id t.foreign_key :market_properties, column: :property_id t. end end |