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

20211004151202_remove_bio_html_from_user_details.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d82589efc90e523f703012899316bb2d6bc4690d (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class RemoveBioHtmlFromUserDetails < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    remove_column :user_details, :bio_html, :text, null: true
    remove_column :user_details, :cached_markdown_version, :integer, null: true
  end
end