2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-03 13:16:15 +00:00

[550-authentication-key-to-text-method-miss-spelled] AuthKey is binary

This commit is contained in:
Francis Dupont
2019-04-09 16:13:17 +02:00
parent 1aaae966e0
commit d8276f1036
15 changed files with 202 additions and 108 deletions

View File

@@ -1,4 +1,4 @@
-- Copyright (C) 2012-2018 Internet Systems Consortium, Inc. ("ISC")
-- Copyright (C) 2012-2019 Internet Systems Consortium, Inc. ("ISC")
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -876,6 +876,17 @@ UPDATE schema_version
-- Schema 5.0 specification ends here.
-- Upgrade to schema 5.1 begins here:
-- Put the auth key in hexadecimal (double size but far more user friendly).
ALTER TABLE hosts ALTER COLUMN auth_key TYPE VARCHAR(32);
-- Set schema 5.1 version
UPDATE schema_version
SET version = '5', minor = '1';
-- Schema 5.1 specification ends here.
-- Commit the script transaction.
COMMIT;