2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-08 09:55:22 +00:00

[295-min-max-lease-time-configuration-options] Moved MySQL schema updates to version 8.1

This commit is contained in:
Francis Dupont
2019-06-21 15:17:04 +02:00
parent 92f5408595
commit 8641448c41
8 changed files with 69 additions and 28 deletions

View File

@@ -2286,6 +2286,12 @@ CREATE TRIGGER dhcp6_options_ADEL AFTER DELETE ON dhcp6_options
END $$
DELIMITER ;
# Update the schema version number
UPDATE schema_version
SET version = '8', minor = '0';
# This line concludes database upgrade to version 8.0.
# Add lifetime bounds
ALTER TABLE dhcp4_shared_network
ADD COLUMN min_valid_lifetime INT(10) DEFAULT NULL,
@@ -2309,10 +2315,9 @@ ALTER TABLE dhcp6_subnet
# Update the schema version number
UPDATE schema_version
SET version = '8', minor = '0';
# This line concludes database upgrade to version 8.0.
SET version = '8', minor = '1';
# This line concludes database upgrade to version 8.1.
# Notes:
#