Sha256: df1e027f179482f92fa623b26952fa2e8ac7d4dd2340c2e0e8ea56680a71cba1

Contents?: true

Size: 321 Bytes

Versions: 17

Compression:

Stored size: 321 Bytes

Contents

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

      t.timestamps
    end
    add_index :link_groups, :name,      unique: true
    add_index :link_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/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.9 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.8 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.7 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.5 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.4.beta1 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.4 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.3 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.2 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.2.beta1 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc6 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc5 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc4 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc3 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc2 db/migrate/20111026193227_create_link_groups.rb
nimbleshop_core-0.0.1.rc1 db/migrate/20111026193227_create_link_groups.rb