summaryrefslogtreecommitdiff
path: root/db/migrate/20140214102325_add_api_key_to_services.rb
blob: b58c36c0a30e239da801d60e1a522ffd418ecd2d (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddApiKeyToServices < ActiveRecord::Migration
  def change
    add_column :services, :api_key, :string
  end
end