Sha256: 6b5c5ebf8a3f67dad9c0767bd142f5858285fbcfe9483cdc589acc0953739652

Contents?: true

Size: 335 Bytes

Versions: 17

Compression:

Stored size: 335 Bytes

Contents

class CreateProductGroups < ActiveRecord::Migration
  def change
    create_table :product_groups do |t|
      t.string :name,      null: false
      t.string :permalink, null: false

      t.timestamps
    end
    add_index :product_groups, :name,       unique: true
    add_index :product_groups, :permalink,  unique: true
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.10 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.9 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.8 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.7 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.5 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.4.beta1 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.4 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.3 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.2 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.2.beta1 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc6 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc5 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc4 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc3 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc2 db/migrate/20111022144421_create_product_groups.rb
nimbleshop_core-0.0.1.rc1 db/migrate/20111022144421_create_product_groups.rb