gitlab-org--gitlab-foss/db/migrate/20130506085413_add_type_to_...

7 lines
127 B
Ruby

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