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:
Aldemir Akpinar
2017-04-19 13:52:13 +03:00
committed by Neil Lathwood
parent eebf0d263a
commit 450c980cc1
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -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 }
+1
View File
@@ -0,0 +1 @@
ALTER TABLE `services` MODIFY `service_type` varchar(255) NOT NULL;