summaryrefslogtreecommitdiff
path: root/db/post_migrate/20211004151202_remove_bio_html_from_user_details.rb
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