summaryrefslogtreecommitdiff
path: root/db/migrate/20210311022012_add_text_limits_to_dast_site_profiles.rb
blob: 7858449be14b0da9eca9f6657f3c75c6534a9a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class AddTextLimitsToDastSiteProfiles < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_text_limit :dast_site_profiles, :auth_url, 1024
    add_text_limit :dast_site_profiles, :auth_username_field, 255
    add_text_limit :dast_site_profiles, :auth_password_field, 255
    add_text_limit :dast_site_profiles, :auth_username, 255
  end

  def down
    remove_text_limit :dast_site_profiles, :auth_username
    remove_text_limit :dast_site_profiles, :auth_password_field
    remove_text_limit :dast_site_profiles, :auth_username_field
    remove_text_limit :dast_site_profiles, :auth_url
  end
end