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

11 lines
202 B
Ruby

class CreateAlbumFormats < ActiveRecord::Migration
def change
create_table :album_formats do |t|
t.integer :album_id
t.integer :release_format_id
t.timestamps
end
end
end