Advertisement
saasbook

add_index.rb

Apr 2nd, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class AddEmailIndexToMoviegoers < ActiveRecord::Migration
  2.   def up
  3.     add_index 'moviegoers', 'email', :unique => true
  4.     # :unique is optional - see text for important warning!
  5.   end
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement