summaryrefslogtreecommitdiff
path: root/db/migrate/20150730122406_add_updated_by_to_issuables_and_notes.rb
blob: 78d45c7f96b8dbad7e5f36b1ea0b7ceca7499096 (plain)
1
2
3
4
5
6
7
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