repo.or.cz
/
gitorious.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Handle not ready repos
[gitorious.git]
/
db
/
migrate
/
20090126141704_adding_state_to_user.rb
blob
96f237a132e104739d4fe5e939c1abf0a5ca1862
1
class AddingStateToUser < ActiveRecord::Migration
2
def self.up
3
add_column :users, :aasm_state, :string
4
end
5
6
def self.down
7
remove_column :users, :aasm_state
8
end
9
end