##// END OF EJS Templates
Implementing more unit tests for the plugin hooks
Implementing more unit tests for the plugin hooks

File last commit:

r1222:3a9b0988c751
r1705:e14b86453e61
Show More
092_change_changes_from_revision_to_string.rb
9 lines | 218 B | text/x-ruby | RubyLexer
/ db / migrate / 092_change_changes_from_revision_to_string.rb
class ChangeChangesFromRevisionToString < ActiveRecord::Migration
def self.up
change_column :changes, :from_revision, :string
end
def self.down
change_column :changes, :from_revision, :integer
end
end