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

20220723120039_add_author_id_to_vulnerability_state_transitions.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b16ba2bb82ca620c39f51f7493eefd816106863 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddAuthorIdToVulnerabilityStateTransitions < Gitlab::Database::Migration[2.0]
  def change
    add_column :vulnerability_state_transitions, :author_id, :bigint
  end
end