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

class AddMarkdownSurroundSelectionToUserPreferences < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      add_column :user_preferences, :markdown_surround_selection, :boolean, default: true, null: false
    end
  end

  def down
    with_lock_retries do
      remove_column :user_preferences, :markdown_surround_selection, :boolean
    end
  end
end