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