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

20130624162710_add_fingerprint_to_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e574ea81b9755b06efdd0ed05f6b19545d52405 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddFingerprintToKey < ActiveRecord::Migration
  def change
    add_column :keys, :fingerprint, :string
    remove_column :keys, :identifier
  end
end