Advertisement
saasbook

Untitled

Feb 23rd, 2012
781
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.24 KB | None | 0 0
  1. class CreateGenresMovies < ActiveRecord::Migration
  2.   def up
  3.     create_table 'genres_movies', :id => false do t
  4.       t.references 'genres'
  5.       t.references 'movies'
  6.     end
  7.   end
  8.   def down
  9.     drop_table 'genres_movies'
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement