mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
14 lines
355 B
Ruby
14 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveSignInTextHtml < Gitlab::Database::Migration[2.2]
|
|
milestone '17.4'
|
|
|
|
def up
|
|
remove_column :application_settings, :sign_in_text_html # rubocop:disable Migration/RemoveColumn -- We need to remove this unused column
|
|
end
|
|
|
|
def down
|
|
add_column :application_settings, :sign_in_text_html, :text
|
|
end
|
|
end
|