Sha256: 891598a28679600ce7167817d5a7284e2e15ae94aa6313d5cd3ca63334b168f2

Contents?: true

Size: 306 Bytes

Versions: 8

Compression:

Stored size: 306 Bytes

Contents

class CreateShoppeProductAttributes < ActiveRecord::Migration
  def change
    create_table :shoppe_product_attributes do |t|
      t.integer :product_id
      t.string :key, :value
      t.integer :position, :default => 1
      t.boolean :searchable, :default => true
      t.timestamps
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shoppe-0.0.15 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.14 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.13 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.12 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.11 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.10 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.9 db/migrate/20131012123829_create_shoppe_product_attributes.rb
shoppe-0.0.8 db/migrate/20131012123829_create_shoppe_product_attributes.rb