1
0
Fork 0
oldhaven/db/migrate/20110920154338_create_artis...

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