mirror of
https://github.com/redmine/redmine.git
synced 2025-10-29 17:26:23 +01:00
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1189 e93f8b46-1217-0410-a6f0-8f06a7374b81
9 lines
192 B
Ruby
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
|