##// END OF EJS Templates
remove trailing white-spaces from db/migrate/081_create_projects_trackers.rb (#9510)...
remove trailing white-spaces from db/migrate/081_create_projects_trackers.rb (#9510) Contributed by Igor Zubkov. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7754 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4834:262741913119
r7634:a40e2ec5c7e1
Show More
20110227125750_change_journal_details_values_to_text.rb
11 lines | 324 B | text/x-ruby | RubyLexer
/ db / migrate / 20110227125750_change_journal_details_values_to_text.rb
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