Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20140214102325_add_api_key_to_services.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30eeca2c1f65c05999eaad5f65d6b4e0b2393d9e (plain)
1
2
3
4
5
class AddApiKeyToServices < ActiveRecord::Migration
  def change
    add_column :services, :api_key, :string
  end
end