1
0
Fork 0
oldhaven/db/migrate/20110922190755_create_album...

11 lines
191 B
Ruby
Raw Normal View History

2011-09-22 19:54:09 +00:00
class CreateAlbumStyles < ActiveRecord::Migration
def change
create_table :album_styles do |t|
t.integer :album_id
t.integer :style_id
t.timestamps
end
end
end