Sha256: 239806c4190b0871b733d6f20f2f310b35eb0d7f24ce41aa9da2add9088b8496
Contents?: true
Size: 263 Bytes
Versions: 2
Compression:
Stored size: 263 Bytes
Contents
class CreateProductsWishlists < ActiveRecord::Migration def self.up create_table :products_wishlists do |t| t.belongs_to :wishlist, :product t.integer :quantity end end def self.down drop_table :products_wishlists end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
forgeos_commerce-1.9.1.rc1 | db/migrate/20091009134821_create_products_wishlists.rb |
forgeos_commerce-1.9.0 | db/migrate/20091009134821_create_products_wishlists.rb |