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

[5351] Addressed nearly all comments

This commit is contained in:
Francis Dupont
2017-12-17 19:48:04 +01:00
parent f004bcefae
commit a22b7af0bf
24 changed files with 142 additions and 239 deletions

View File

@@ -498,6 +498,11 @@ END
$$
DELIMITER ;
# Update the schema version number
UPDATE schema_version
SET version = '5', minor = '1';
# This line concludes database upgrade to version 5.1.
# Add user context into table holding hosts
ALTER TABLE hosts ADD COLUMN user_context TEXT NULL;
@@ -507,8 +512,8 @@ ALTER TABLE dhcp6_options ADD COLUMN user_context TEXT NULL;
# Update the schema version number
UPDATE schema_version
SET version = '5', minor = '1';
# This line concludes database upgrade to version 5.1.
SET version = '6', minor = '0';
# This line concludes database upgrade to version 6.0.
# Notes:
#