summaryrefslogtreecommitdiff
path: root/db/migrate/20130624162710_add_fingerprint_to_key.rb
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