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

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

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

  def up
    add_text_limit :appearances, :pwa_icon, 1024
  end

  def down
    remove_text_limit :appearances, :pwa_icon
  end
end