redmine/db/migrate/087_change_projects_description_to_text.rb
Jean-Philippe Lang a2626bbccf Fixed: not null constraints not removed with Postgresql.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1140 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-02-12 21:11:16 +00:00

9 lines
175 B
Ruby

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