view db/migrate/.svn/text-base/20090318181151_extend_settings_name.rb.svn-base @ 243:0c38ffddde77

Fix up entries, etc, from a current SVN checkout (for the same revision as previously)
author Chris Cannam
date Thu, 03 Mar 2011 11:08:15 +0000
parents 513646585e45
children
line wrap: on
line source
class ExtendSettingsName < ActiveRecord::Migration
  def self.up
    change_column :settings, :name, :string, :limit => 255, :default => '', :null => false
  end

  def self.down
    raise ActiveRecord::IrreversibleMigration
  end
end