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

20130819182730_add_internal_ids_to_issues_and_mr.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e55ae38f144d5f4f181fa5a9b287834ec73f00fb (plain)
1
2
3
4
5
6
class AddInternalIdsToIssuesAndMr < ActiveRecord::Migration
  def change
    add_column :issues, :iid, :integer
    add_column :merge_requests, :iid, :integer
  end
end