Migration to extend the Settings table - Eric Davis, 2009-03-19 01:04
class ExtendSettingsName < ActiveRecord::Migration
def self.up
change_column :settings, :name, :string, :limit => 255, :default => '', :null => false
end
def self.down
raise ActiveRecord::IrreversibleMigration