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

[5102] Updated MySQL and PgSQL schemas with 'client-id' host id type.

This commit is contained in:
Marcin Siodelski
2017-04-14 23:39:13 +02:00
parent d2e51e6a30
commit ec873ef2f2
11 changed files with 125 additions and 13 deletions

View File

@@ -483,6 +483,17 @@ UPDATE schema_version
-- Schema 3.0 specification ends here.
-- This is a placeholder for the changes between 3.0 and 3.1. Even if there
-- are no further changes the schema version should be set to 3.1, because
-- we have added a missing 'client-id' host reservation type entry in the
-- 3.0 -> 3.1 upgrade script. This entry had been accidentally omitted when
-- the 2.0 -> 3.0 upgrade script was created.
-- Set 3.1 schema version.
UPDATE schema_version
SET version = '3', minor = '1';
-- Commit the script transaction.
COMMIT;