Handle not ready repos
[gitorious.git] / db / migrate / 20090126141704_adding_state_to_user.rb
blob96f237a132e104739d4fe5e939c1abf0a5ca1862
1 class AddingStateToUser < ActiveRecord::Migration
2   def self.up
3     add_column :users, :aasm_state, :string
4   end
6   def self.down
7     remove_column :users, :aasm_state
8   end
9 end