##// END OF EJS Templates
More unit tests to cover hook_registered?
More unit tests to cover hook_registered?

File last commit:

r380:71b6dd232e0a
r1707:e87140a719c2
Show More
036_add_changeset_commit_date.rb
10 lines | 248 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
Jean-Philippe Lang
fixed #9542 sqlite3 exception in db:migrate on AddChangesetCommitDate...
r380 add_column :changesets, :commit_date, :date
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 Changeset.update_all "commit_date = committed_on"
end
def self.down
remove_column :changesets, :commit_date
end
end