20140811200922_add_uid_column_to_services.rb 183 B

1234567
  1. class AddUidColumnToServices < ActiveRecord::Migration
  2. def change
  3. add_column :services, :uid, :string
  4. add_index :services, :uid
  5. add_index :services, :provider
  6. end
  7. end