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:
@@ -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}
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user