summaryrefslogtreecommitdiffstats
path: root/db/migrate/087_change_projects_description_to_text.rb
blob: 132e921b348e22358989d82b5bcf40c1851db761 (plain)
1
2
3
4
5
6
7
8
class ChangeProjectsDescriptionToText < ActiveRecord::Migration
  def self.up
    change_column :projects, :description, :text, :null => true, :default => nil
  end

  def self.down
  end
end