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: 315e7ca77b3c2d7b5cc62260e7eb7404f069b7f1 (plain)
1
2
3
4
5
class AddTypeToKey < ActiveRecord::Migration
  def change
    add_column :keys, :type, :string
  end
end