Sha256: 2e924fc60b852d8681126ab21222bcc85d6fe66436b59a592c3946aa82597e33
Contents?: true
Size: 299 Bytes
Versions: 28
Compression:
Stored size: 299 Bytes
Contents
class CreateProductOptionTypes < ActiveRecord::Migration def self.up create_table :product_option_types do |t| t.integer :product_id t.integer :option_type_id t.integer :position t.timestamps end end def self.down drop_table :product_option_types end end
Version data entries
28 entries across 28 versions & 4 rubygems