1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-07-28 20:17:48 +02:00
redmine/db/migrate/087_change_projects_description_to_text.rb
2008-03-05 09:16:19 +00:00

9 lignes
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