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

[#719] Reapplied patch

This commit is contained in:
Francis Dupont
2023-03-06 17:34:30 +01:00
parent 71c812e3c1
commit 7efe36286c
75 changed files with 2406 additions and 1124 deletions

View File

@@ -33,6 +33,7 @@ mysql_SCRIPTS += upgrade_010_to_011.sh
mysql_SCRIPTS += upgrade_011_to_012.sh
mysql_SCRIPTS += upgrade_012_to_013.sh
mysql_SCRIPTS += upgrade_013_to_014.sh
mysql_SCRIPTS += upgrade_014_to_015.sh
mysql_SCRIPTS += wipe_data.sh
DISTCLEANFILES = ${mysql_SCRIPTS}

View File

@@ -5063,6 +5063,22 @@ UPDATE schema_version
-- This line concludes the schema upgrade to version 14.
-- This line starts the schema upgrade to version 15.
-- Add cancelled (aka never-send) column to option tables.
ALTER TABLE dhcp4_options
ADD COLUMN cancelled TINYINT(1) NOT NULL DEFAULT 0;
ALTER TABLE dhcp6_options
ADD COLUMN cancelled TINYINT(1) NOT NULL DEFAULT 0;
-- Update the schema version number.
UPDATE schema_version
SET version = '15', minor = '0';
-- This line concludes the schema upgrade to version 15.
# Notes:
#
# Indexes