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