view .svn/pristine/dd/dd0aa83c766a2c2e132d5e6eda1f9a1afdce4ca7.svn-base @ 1005:85123e5bc883 browsing

Add tag cloud to front page (probably don't want it quite like this in the "real world")
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 09 Nov 2012 16:33:06 +0000
parents cbb26bc654de
children
line wrap: on
line source
class AddIndexToSettingsName < ActiveRecord::Migration
  def self.up
    add_index :settings, :name
  end

  def self.down
    remove_index :settings, :name
  end
end