view db/migrate/087_change_projects_description_to_text.rb @ 354:8c804ce943db feature_123

Text and layout changes to try to clarify the Welcome page settings
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 01 Apr 2011 09:37:51 +0100
parents 513646585e45
children
line wrap: on
line source
class ChangeProjectsDescriptionToText < ActiveRecord::Migration
  def self.up
    change_column :projects, :description, :text, :null => true, :default => nil
  end

  def self.down
  end
end