Sha256: 4c4f7367bbd43b9075b9e7de071bb1249c8979a74ec39f5d72d7227d1203c10b
Contents?: true
Size: 288 Bytes
Versions: 2
Compression:
Stored size: 288 Bytes
Contents
class CreateSizes < ActiveRecord::Migration def self.up create_table :sizes, :force => true do |t| t.string :name t.integer :quantity t.belongs_to :product t.integer :position t.timestamps end end def self.down drop_table :sizes end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
forgeos_commerce-1.9.1.rc1 | db/migrate/20100414091706_create_sizes.rb |
forgeos_commerce-1.9.0 | db/migrate/20100414091706_create_sizes.rb |