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