1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00
redmine/db/migrate/087_change_projects_description_to_text.rb
2008-03-05 09:16:19 +00:00

9 lines
192 B
Ruby

class ChangeProjectsDescriptionToText < ActiveRecord::Migration
def self.up
change_column :projects, :description, :text, :null => true, :default => nil
end
def self.down
end
end