feature/share-libs
rb 13 lines 319 Bytes
Raw
1 class CreateAlbumProviders < ActiveRecord::Migration[6.1]
2 def change
3 create_table :album_providers do |t|
4 t.references :user, foreign_key: true
5 t.references :album, foreign_key: true
6 t.string :provider_id
7 t.integer :provider_type
8 t.string :name
9
10 t.timestamps
11 end
12 end
13 end