From 8e6449dddc09ff00897a491e3cf0a41efed73ca8 Mon Sep 17 00:00:00 2001 From: Anthony F McInerney Date: Fri, 25 Sep 2020 05:12:00 +0100 Subject: [PATCH] Add service templates --- misc/db_schema.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index a6eabd5ce6..90bb7cbb3b 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -1721,7 +1721,7 @@ services: - { Field: service_disabled, Type: tinyint, 'Null': false, Extra: '', Default: '0' } - { Field: service_ds, Type: text, 'Null': false, Extra: '' } - { Field: service_template_id, Type: 'int unsigned', 'Null': false, Extra: '', Default: '0' } - - { Field: service_name, Type: varchar(255), 'Null': false, Extra: '' } + - { Field: service_name, Type: varchar(255), 'Null': true, Extra: '' } Indexes: PRIMARY: { Name: PRIMARY, Columns: [service_id], Unique: true, Type: BTREE } services_device_id_index: { Name: services_device_id_index, Columns: [device_id], Unique: false, Type: BTREE }