diff --git a/core/database/scripts/mysql/db_00028.sql b/core/database/scripts/mysql/db_00028.sql new file mode 100644 index 00000000..46ecd4c1 --- /dev/null +++ b/core/database/scripts/mysql/db_00028.sql @@ -0,0 +1,6 @@ +/* Community Edition */ + +-- BUGFIX: Increase column size +ALTER TABLE dmz_space MODIFY `c_icon` VARCHAR(50) NOT NULL DEFAULT ''; + +-- Deprecations diff --git a/core/database/scripts/postgresql/db_00004.sql b/core/database/scripts/postgresql/db_00004.sql new file mode 100644 index 00000000..955231a7 --- /dev/null +++ b/core/database/scripts/postgresql/db_00004.sql @@ -0,0 +1,6 @@ +/* Community Edition */ + +-- BUGFIX: Increase column size +ALTER TABLE dmz_space ALTER COLUMN c_icon TYPE VARCHAR(50); + +-- Deprecations