mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-30 09:14:09 +02:00
parent
85943f69a0
commit
f9321ec7b3
@ -18,6 +18,9 @@ before switching to a new version.
|
|||||||
### CLI
|
### CLI
|
||||||
* FEATURE: Service Groups are now available on CLI (#1745)
|
* FEATURE: Service Groups are now available on CLI (#1745)
|
||||||
|
|
||||||
|
### Icinga Configuration
|
||||||
|
* FIX: Allow to render single configuration files larger than 16MB (#1787)
|
||||||
|
|
||||||
1.6.2
|
1.6.2
|
||||||
-----
|
-----
|
||||||
### Fixed issues
|
### Fixed issues
|
||||||
|
6
schema/mysql-migrations/upgrade_159.sql
Normal file
6
schema/mysql-migrations/upgrade_159.sql
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ALTER TABLE director_generated_file
|
||||||
|
MODIFY COLUMN content LONGTEXT NOT NULL;
|
||||||
|
|
||||||
|
INSERT INTO director_schema_migration
|
||||||
|
(schema_version, migration_time)
|
||||||
|
VALUES (159, NOW());
|
@ -84,7 +84,7 @@ CREATE TABLE director_generated_config (
|
|||||||
|
|
||||||
CREATE TABLE director_generated_file (
|
CREATE TABLE director_generated_file (
|
||||||
checksum VARBINARY(20) NOT NULL COMMENT 'SHA1(content)',
|
checksum VARBINARY(20) NOT NULL COMMENT 'SHA1(content)',
|
||||||
content MEDIUMTEXT NOT NULL,
|
content LONGTEXT NOT NULL,
|
||||||
cnt_object INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
cnt_object INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||||
cnt_template INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
cnt_template INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||||
cnt_apply INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
cnt_apply INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||||
@ -1787,4 +1787,4 @@ CREATE TABLE icinga_timeperiod_exclude (
|
|||||||
|
|
||||||
INSERT INTO director_schema_migration
|
INSERT INTO director_schema_migration
|
||||||
(schema_version, migration_time)
|
(schema_version, migration_time)
|
||||||
VALUES (157, NOW());
|
VALUES (159, NOW());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user