##// END OF EJS Templates
fixed bug 9537 fetch_changesets broken...
fixed bug 9537 fetch_changesets broken git-svn-id: http://redmine.rubyforge.org/svn/trunk@382 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r377:0ef114e00641
r379:1f7863e32391
Show More
036_add_changeset_commit_date.rb
10 lines | 264 B | text/x-ruby | RubyLexer
/ db / migrate / 036_add_changeset_commit_date.rb
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 class AddChangesetCommitDate < ActiveRecord::Migration
def self.up
add_column :changesets, :commit_date, :date, :null => false
Changeset.update_all "commit_date = committed_on"
end
def self.down
remove_column :changesets, :commit_date
end
end