summaryrefslogtreecommitdiff
path: root/db/migrate/20220914131449_add_text_limit_to_projects_jitsu_key.rb
blob: 93aa27ffaa2d2c6df72eb6c1f031ab0e16e48f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddTextLimitToProjectsJitsuKey < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  def up
    add_text_limit :project_settings, :jitsu_key, 100
  end

  def down
    remove_text_limit :project_settings, :jitsu_key
  end
end