Handle not ready repos
[gitorious.git] / db / migrate / 20100224153358_adding_request_counters_to_hooks.rb
blob5d751841fe10effb05405c7ae6934dc2f8550708
1 class AddingRequestCountersToHooks < ActiveRecord::Migration
2   def self.up
3     add_column :hooks, :failed_request_count, :integer, :default => 0
4     add_column :hooks, :successful_request_count, :integer, :default => 0
5   end
7   def self.down 
8     remove_column :hooks, :failed_request_count
9     remove_column :hooks, :successful_request_count
10   end
11 end