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

12 lines
210 B
Ruby
Raw Normal View History

2011-09-20 20:30:42 +00:00
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