debian-mirror-gitlab/db/migrate/20200510182556_add_text_limit_to_webauthn_registrations_name.rb
2020-08-09 17:44:08 +05:30

17 lines
346 B
Ruby

# frozen_string_literal: true
class AddTextLimitToWebauthnRegistrationsName < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_text_limit :webauthn_registrations, :name, 255
end
def down
remove_text_limit :webauthn_registrations, :name
end
end