summaryrefslogtreecommitdiff
path: root/db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
downloadgitlab-ce-8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781.tar.gz
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb')
-rw-r--r--db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb b/db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb
deleted file mode 100644
index a6f2605c906..00000000000
--- a/db/migrate/20180314145917_add_header_and_footer_banners_to_appearances_table.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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