OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20110227125750_change_journ...

11 lines
324 B

class ChangeJournalDetailsValuesToText < ActiveRecord::Migration
def self.up
change_column :journal_details, :old_value, :text
change_column :journal_details, :value, :text
end
def self.down
change_column :journal_details, :old_value, :string
change_column :journal_details, :value, :string
end
end