Guest User

Untitled

a guest
Feb 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. migration( 1, :convert_active_record_users ) do
  2. up do
  3. Users.all(:orm => 'active_record').each do |u|
  4. u.orm = 'datamapper'
  5. u.save
  6. end
  7. end
  8. end
  9.  
  10. migrate_up!
Add Comment
Please, Sign In to add comment