mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix: Service filenames are snipped when longer than 16 characters (#6459)
* Do not show unintended debug messages * Fix the silly mistake * Change Cisco UCM category from tele to telephony * Added telephony definitions * Changed the category to collaboration as agreed * Fix snipped service filenames * rebased * rebased + fixed schema
This commit is contained in:
committed by
Neil Lathwood
parent
eebf0d263a
commit
450c980cc1
+1
-1
@@ -1346,7 +1346,7 @@ services:
|
||||
service_message: { Field: service_message, Type: text, 'Null': false, Default: null, Extra: '' }
|
||||
service_param: { Field: service_param, Type: text, 'Null': false, Default: null, Extra: '' }
|
||||
service_status: { Field: service_status, Type: tinyint(4), 'Null': false, Default: '0', Extra: '' }
|
||||
service_type: { Field: service_type, Type: varchar(16), 'Null': false, Default: null, Extra: '' }
|
||||
service_type: { Field: service_type, Type: varchar(255), 'Null': false, Default: null, Extra: '' }
|
||||
Indexes:
|
||||
PRIMARY: { Name: PRIMARY, Columns: [service_id], Unique: true, Type: BTREE }
|
||||
service_host: { Name: service_host, Columns: [device_id], Unique: false, Type: BTREE }
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `services` MODIFY `service_type` varchar(255) NOT NULL;
|
||||
Reference in New Issue
Block a user