summaryrefslogtreecommitdiff
path: root/db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb
blob: a6f2605c9061f6a2e5a8932d3894d57439b51fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class AddHeaderAndFooterBannersToAppearancesTable < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    # rubocop:disable Migration/AddLimitToTextColumns
    add_column :appearances, :header_message, :text
    add_column :appearances, :header_message_html, :text

    add_column :appearances, :footer_message, :text
    add_column :appearances, :footer_message_html, :text

    add_column :appearances, :message_background_color, :text
    add_column :appearances, :message_font_color, :text
    # rubocop:enable Migration/AddLimitToTextColumns
  end
end