debian-mirror-gitlab/db/migrate/20221223114543_add_pwa_icon_to_appearances.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
324 B
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# 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