Advertisement
saasbook

schema_migration_a.rb

Apr 2nd, 2012
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.25 KB | None | 0 0
  1. class SplitName1 < ActiveRecord::Migration
  2.   def up
  3.     add_column 'moviegoers', 'first_name', :string
  4.     add_column 'moviegoers', 'last_name', :string
  5.     add_column 'moviegoers', 'migrated', :boolean
  6.     add_index 'moviegoers', 'migrated'
  7.   end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement