11 lines
202 B
Ruby
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
|