Handle not ready repos
[gitorious.git] / db / migrate / 20090316143009_add_last_pushed_at_to_repositories.rb
blob931d7fefba029fc27b5a6db29158826c99b4d420
1 class AddLastPushedAtToRepositories < ActiveRecord::Migration
2   def self.up
3     add_column :repositories, :last_pushed_at, :datetime
4   end
6   def self.down
7     remove_column :repositories, :last_pushed_at
8   end
9 end