Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130506085413_add_type_to_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9f1ee4e3898c4d2d71ba09772b2bc53b8caba78 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTypeToKey < ActiveRecord::Migration
  def change
    add_column :keys, :type, :string
  end
end