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

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

class AddProjectSettingsPagesUniqueDomainLimit < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    add_text_limit :project_settings, :pages_unique_domain, 63
  end

  def down
    remove_text_limit :project_settings, :pages_unique_domain
  end
end