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

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

class AddWebAuthnXidToUserDetails < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in subsequent migration
  def change
    add_column :user_details, :webauthn_xid, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end