Migrations added
This commit is contained in:
parent
152c6018b3
commit
9a06dd4aa1
3 changed files with 28 additions and 0 deletions
14
db/migrate/20130304104740_convert_blocked_to_state.rb
Normal file
14
db/migrate/20130304104740_convert_blocked_to_state.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class ConvertBlockedToState < ActiveRecord::Migration
|
||||
def up
|
||||
User.transaction do
|
||||
User.where(blocked: true).update_all(state: :blocked)
|
||||
User.where(blocked: false).update_all(state: :active)
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
User.transaction do
|
||||
User.where(satate: :blocked).update_all(blocked: :true)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue