1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-07-27 07:37:45 +02:00
redmine/db/migrate/087_change_projects_description_to_text.rb

9 linhas
197 B
Ruby

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