debian-mirror-gitlab/db/migrate/20130506085413_add_type_to_key.rb
2016-06-16 23:09:34 +05:30

7 lines
127 B
Ruby

# rubocop:disable all
class AddTypeToKey < ActiveRecord::Migration
def change
add_column :keys, :type, :string
end
end