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

20230612074428_add_name_to_external_audit_event_destination.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fe61c4caad98b207c05fecb28b115f13c4b7793 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddNameToExternalAuditEventDestination < Gitlab::Database::Migration[2.1]
  # rubocop:disable Migration/AddLimitToTextColumns
  # text limit is added in a 20230612091526_add_text_limit_to_external_audit_event_destination_name.rb migration
  def change
    add_column :audit_events_external_audit_event_destinations, :name, :text
  end

  # rubocop:enable Migration/AddLimitToTextColumns
end