Sha256: fe6e4f766a541aceed7037be7eca087aeb4209a09551c9729504bf3fec0d79fa
Contents?: true
Size: 281 Bytes
Versions: 8
Compression:
Stored size: 281 Bytes
Contents
class CreateProductAttributes < ActiveRecord::Migration def self.up create_table :product_attributes do |t| t.references :product t.string :name t.string :value t.timestamps end end def self.down drop_table :product_attributes end end
Version data entries
8 entries across 8 versions & 1 rubygems