From fd7cf79c72e9e9a637661b30559a79163db8214c Mon Sep 17 00:00:00 2001 From: sorano Date: Thu, 9 Feb 2017 19:12:25 +0100 Subject: [PATCH] allow interface names > 64 chars (#5847) As discussed on IRC, this will allow interface names up to 255 chars to prevent eventlog updates from rinse and repeat ad infinitum --- sql-schema/161.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql-schema/161.sql diff --git a/sql-schema/161.sql b/sql-schema/161.sql new file mode 100644 index 0000000000..2e5fb51c0b --- /dev/null +++ b/sql-schema/161.sql @@ -0,0 +1 @@ +ALTER TABLE `ports` CHANGE COLUMN `ifName` `ifName` VARCHAR(255) DEFAULT NULL; \ No newline at end of file