Sha256: cc3e8c6d1f9f88be5dc15b69a306419eac7a0cdc8c7caed1c7524c2f1b743438

Contents?: true

Size: 338 Bytes

Versions: 32

Compression:

Stored size: 338 Bytes

Contents

class AddCachedSlugToOrganizations < ActiveRecord::Migration
  
  def self.up
    add_column :organizations, :cached_slug, :string
    add_index  :organizations, :cached_slug

    Organization.find_each do |org|
      org.save(:validate => false)
    end
  end

  def self.down
    remove_column :organizations, :cached_slug
  end
  
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
artfully_ose-1.3.0.pre4 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.3.0.pre3 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.3.0.pre2 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.3.0.pre1 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.beta.1 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.alpha.2 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.alpha.1 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.27 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.26 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.24 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.23 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.21 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.20 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.19 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.18 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.17 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.16 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.15 db/migrate/20130723182811_add_cached_slug_to_organizations.rb
artfully_ose-1.2.0.pre.12 db/migrate/20130723182811_add_cached_slug_to_organizations.rb