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

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

class AddTextLimitToSubmitFieldDastSiteProfiles < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  def up
    add_text_limit :dast_site_profiles, :auth_submit_field, 255
  end

  def down
    remove_text_limit :dast_site_profiles, :auth_submit_field
  end
end