2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-02 23:15:20 +00:00

[#2786] addressed comments

This commit is contained in:
Razvan Becheriu
2023-05-09 11:53:31 +03:00
parent 50eee8ebac
commit 82c33e04b1
62 changed files with 288 additions and 257 deletions

View File

@@ -58,11 +58,13 @@ EOF
fi
mysql "${@}" <<EOF
-- This line starts the schema upgrade to version 9.6.
# Add an auto-increment ID as primary key to support Percona.
ALTER TABLE logs
ADD id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY;
# Update the schema version number
# Update the schema version number.
UPDATE schema_version
SET version = '9', minor = '6';