photomix/db/migrate/20090522190622_create_photo_tags.rb
2009-05-22 22:38:52 +02:00

14 lines
235 B
Ruby

class CreatePhotoTags < ActiveRecord::Migration
def self.up
create_table :photo_tags do |t|
t.references :tag
t.references :photo
t.timestamps
end
end
def self.down
drop_table :photo_tags
end
end