Handle not ready repos
[gitorious.git] / db / migrate / 20110223130355_add_suspended_at_to_projects.rb
blobfd0e3e3bb0fb661c38838917a05f3e8c66fec699
1 class AddSuspendedAtToProjects < ActiveRecord::Migration
2   def self.up
3     add_column :projects, :suspended_at, :datetime, :default => nil
4   end
6   def self.down
7     remove_column :projects, :suspended_at
8   end
9 end