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

20150730122406_add_updated_by_to_issuables_and_notes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be30e881c746f346372fca323693471115dc9c96 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable all
class AddUpdatedByToIssuablesAndNotes < ActiveRecord::Migration
  def change
    add_column :notes, :updated_by_id, :integer
    add_column :issues, :updated_by_id, :integer
    add_column :merge_requests, :updated_by_id, :integer
  end
end