debian-mirror-gitlab/db/migrate/20150730122406_add_updated_by_to_issuables_and_notes.rb
2015-09-11 14:41:01 +05:30

8 lines
241 B
Ruby

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