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