Class: CreatePostProducts
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreatePostProducts
- Defined in:
- lib/generators/templates/db/migrate/create_post_products.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
10 11 12 |
# File 'lib/generators/templates/db/migrate/create_post_products.rb', line 10 def self.down drop_table :post_products end |
.up ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/generators/templates/db/migrate/create_post_products.rb', line 2 def self.up create_table :post_products do |t| t.references :post t.references :product t.integer :position end end |