| OLD | NEW |
|---|---|
| (Empty) | |
| 1 class TagsPhotos < ActiveRecord::Migration | |
| 2 def self.up | |
| 3 create_table :tags_photos, :id => false do |t| | |
| 4 t.integer :tag_id | |
| 5 t.integer :photo_id | |
| 6 t.timestamps | |
| 7 end | |
| 8 end | |
| 9 | |
| 10 def self.down | |
| 11 drop_table :tags_photos | |
| 12 end | |
| 13 end | |
| OLD | NEW |