1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-27 05:58:46 +02:00
redmine/db/migrate/087_change_projects_description_to_text.rb
2008-03-05 09:16:19 +00:00

9 satır
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