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

20140506091853_remove_public_key_from_runner.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bf9f036ae87dacc0bf041f8c1cbfb5f8bfaf387 (plain)
1
2
3
4
5
class RemovePublicKeyFromRunner < ActiveRecord::Migration
  def change
    remove_column :runners, :public_key
  end
end