2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +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

@@ -2367,6 +2367,10 @@ CREATE TRIGGER dhcp6_server_ADEL AFTER DELETE ON dhcp6_server
END $$
DELIMITER ;
# Put the auth key in hexadecimal (double size but far more user friendly).
ALTER TABLE hosts
MODIFY COLUMN auth_key VARCHAR(32) NULL;
# Update the schema version number
UPDATE schema_version
SET version = '8', minor = '1';

View File

@@ -93,6 +93,10 @@ CREATE TRIGGER dhcp6_server_ADEL AFTER DELETE ON dhcp6_server
END $$
DELIMITER ;
# Put the auth key in hexadecimal (double size but far more user friendly).
ALTER TABLE hosts
MODIFY COLUMN auth_key VARCHAR(32) NULL;
# Update the schema version number
UPDATE schema_version
SET version = '8', minor = '1';