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

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

class AddPwaIconToAppearances < Gitlab::Database::Migration[2.1]
  # rubocop:disable Migration/AddLimitToTextColumns
  def up
    add_column :appearances, :pwa_icon, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns

  def down
    remove_column :appearances, :pwa_icon
  end
end