12 lines
210 B
Ruby
12 lines
210 B
Ruby
|
class CreateArtistLinks < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :artist_links do |t|
|
||
|
t.integer :artist_id
|
||
|
t.string :service
|
||
|
t.string :url
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|