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: 544a83667275043c851b3c05d5a99cbb2f0369e3 (plain)
1
2
3
4
5
6
class AddFingerprintToKey < ActiveRecord::Migration
  def change
    add_column :keys, :fingerprint, :string
    remove_column :keys, :identifier
  end
end