oldhaven/db/migrate/20110920154338_create_artist_links.rb
2011-09-21 00:30:42 +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