@@ -217,6 +217,31 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targettickets` (
217
217
INDEX ` tickettemplates_id` (` tickettemplates_id` )
218
218
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
219
219
220
+ CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targetproblems` (
221
+ ` id` int (11 ) NOT NULL AUTO_INCREMENT,
222
+ ` name` varchar (255 ) NOT NULL DEFAULT ' ' ,
223
+ ` plugin_formcreator_forms_id` int (11 ) NOT NULL DEFAULT ' 0' ,
224
+ ` target_name` varchar (255 ) NOT NULL DEFAULT ' ' ,
225
+ ` problemtemplates_id` int (11 ) NOT NULL DEFAULT ' 0' ,
226
+ ` content` longtext,
227
+ ` impactcontent` longtext,
228
+ ` causecontent` longtext,
229
+ ` symptomcontent` longtext,
230
+ ` urgency_rule` int (11 ) NOT NULL DEFAULT ' 1' ,
231
+ ` urgency_question` int (11 ) NOT NULL DEFAULT ' 0' ,
232
+ ` destination_entity` int (11 ) NOT NULL DEFAULT ' 1' ,
233
+ ` destination_entity_value` int (11 ) DEFAULT NULL ,
234
+ ` tag_type` int (11 ) NOT NULL DEFAULT ' 1' ,
235
+ ` tag_questions` varchar (255 ) NOT NULL ,
236
+ ` tag_specifics` varchar (255 ) NOT NULL ,
237
+ ` category_rule` int (11 ) NOT NULL DEFAULT ' 1' ,
238
+ ` category_question` int (11 ) NOT NULL DEFAULT ' 0' ,
239
+ ` show_rule` int (11 ) NOT NULL DEFAULT ' 1' ,
240
+ ` uuid` varchar (255 ) DEFAULT NULL ,
241
+ PRIMARY KEY (` id` ),
242
+ INDEX ` problemtemplates_id` (` problemtemplates_id` )
243
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8 COLLATE= utf8_unicode_ci;
244
+
220
245
CREATE TABLE IF NOT EXISTS ` glpi_plugin_formcreator_targets_actors` (
221
246
` id` int (11 ) NOT NULL AUTO_INCREMENT,
222
247
` itemtype` varchar (255 ) DEFAULT NULL ,
0 commit comments