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

20110917212932_add_identifier_to_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e572793952aa43621c7dd331891f9cf70061b530 (plain)
1
2
3
4
5
class AddIdentifierToKey < ActiveRecord::Migration
  def change
    add_column :keys, :identifier, :string
  end
end