oldhaven/db/migrate/20110920154338_create_artist_links.rb
Gregory Eremin 3ea944fbb0 Merge
2011-09-22 14:37:53 +04:00

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