2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-01 03:12:32 +00:00

[#1920] Database schema for client classes

Extended database schema with new tables holding information about
configured client classes, ordering them, storing their dependencies and
associating them with the server tags. In addition, extended the tables
holding option definitions with an additional column class_id to optionally
associate an option definition with a class.
This commit is contained in:
Marcin Siodelski
2021-06-10 12:39:30 +02:00
parent 95e81afb62
commit 8a8f6b50c0
9 changed files with 1913 additions and 7 deletions

View File

@@ -52,8 +52,8 @@ const int MLM_MYSQL_FETCH_FAILURE = 0;
/// @name Current database schema version values.
//@{
const uint32_t MYSQL_SCHEMA_VERSION_MAJOR = 9;
const uint32_t MYSQL_SCHEMA_VERSION_MINOR = 6;
const uint32_t MYSQL_SCHEMA_VERSION_MAJOR = 10;
const uint32_t MYSQL_SCHEMA_VERSION_MINOR = 0;
//@}